Skip to content

Commit

Permalink
linux
Browse files Browse the repository at this point in the history
  • Loading branch information
skallweitNV committed Aug 7, 2024
1 parent fd03972 commit b40449b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,20 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows]
os: [windows, linux]
python: ["3.10"]
config: [Debug, Release]
include:
- os: windows
preset: windows-msvc
cmake: tools/host/cmake/bin/cmake.exe
setpath: setpath.ps1
runs-on: [self-hosted, Windows, X64]
- os: linux
preset: linux-gcc
cmake: tools/host/cmake/bin/cmake
setpath: setpath.sh
runs-on: [self-hosted, Linux, X64]

env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
Expand Down Expand Up @@ -92,5 +98,5 @@ jobs:
# Unit Tests (Python)
- name: Unit Tests (Python)
run: |
. ./build/${{matrix.preset}}/bin/${{matrix.config}}/setpath.ps1
. ./build/${{matrix.preset}}/bin/${{matrix.config}}/${{matrix.setpath}}
python -m pytest src

0 comments on commit b40449b

Please sign in to comment.