feat: CI/CD for python-runtime #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: ${{ matrix.runs-on }} | |
timeout-minutes: 40 | |
strategy: | |
matrix: | |
include: | |
- os: "linux" | |
name: "ubuntu-1" | |
runs-on: "ubuntu-18-04" | |
# run-e2e: true | |
- os: "mac" | |
name: "arm64-1" | |
runs-on: "mac-silicon" | |
- os: "windows" | |
name: "amd64-avx2-cuda-12-0" | |
runs-on: "windows-cuda-12-0" | |
steps: | |
- name: Clone | |
id: checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies on Windows | |
if: runner.os == 'windows' | |
run: | | |
choco install make -y | |
.\install_deps.bat | |
- name: Install dependencies on Unix | |
if: runner.os != 'windows' | |
run: | | |
bash ./install_deps.sh | |
- name: Build engine | |
run: | | |
mkdir -p build | |
cd build | |
cmake .. | |
cmake --build . --config Release -j12 | |
- name: Build example server | |
run: | | |
mkdir -p examples/server/build | |
cd examples/server/build | |
cmake .. | |
cmake --build . --config Release -j12 | |
- name: Run e2e test on Windows | |
if: runner.os == 'windows' | |
run: | | |
mkdir -p examples\server\build\Release\engines\cortex.python-runtime | |
cd examples\server\build\Release | |
cp ..\..\..\..\build\Release\engine.dll engines\cortex.python-runtime | |
..\..\..\..\.github\scripts\e2e-test-server-windows.bat server.exe ../../../.github/scripts/python-file-to-test.py | |
- name: Run e2e test on Linux | |
if: runner.os == 'linux' | |
run: | | |
mkdir -p examples/server/build/engines/cortex.python-runtime | |
cd examples/server/build/ | |
cp ../../../build/libengine.so engines/cortex.python-runtime/ | |
chmod +x ../../../.github/scripts/e2e-test-server-linux-and-mac.sh | |
../../../.github/scripts/e2e-test-server-linux-and-mac.sh ./server ../../../.github/scripts/python-file-to-test.py | |
- name: Run e2e test on MacOS | |
if: runner.os == 'mac' | |
run: | | |
mkdir -p examples/server/build/engines/cortex.python-runtime | |
cd examples/server/build/ | |
cp ../../../build/libengine.dylib engines/cortex.python-runtime/ | |
chmod +x ../../../.github/scripts/e2e-test-server-linux-and-mac.sh | |
../../../.github/scripts/e2e-test-server-linux-and-mac.sh ./server ../../../.github/scripts/python-file-to-test.py | |