Skip to content

Commit

Permalink
ci: Fix cross platform build action
Browse files Browse the repository at this point in the history
Signed-off-by: Siddharth Chandrasekaran <[email protected]>
  • Loading branch information
sidcha committed Mar 22, 2024
1 parent 0a8fa3c commit 1d5d746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cross-plaform-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
with:
submodules: recursive
- name: Configure
run: cmake -B build -DCMAKE_BUILD_TYPE=Debug -DCONFIG_OSDP_LIB_ONLY=on .
run: cmake -B build -DCMAKE_BUILD_TYPE=Debug .
- name: Build
run: cmake --build build --parallel 8
- name: Run unit-tests
run: cmake --build build --target check-ut
run: cmake --build build --parallel 8 --target check-ut
- name: Run pytest
run: tests/pytest/run.sh
- name: Pack built binaries
Expand Down

0 comments on commit 1d5d746

Please sign in to comment.