We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20bbbab commit b65ce5eCopy full SHA for b65ce5e
1 file changed
.github/workflows/cross-plaform-build.yml
@@ -23,10 +23,14 @@ jobs:
23
with:
24
submodules: recursive
25
- name: Configure
26
- run: cmake -B build -DCMAKE_BUILD_TYPE=Debug -DOPT_OSDP_LIB_ONLY=on .
+ run: cmake -B build -DCMAKE_BUILD_TYPE=Debug .
27
- name: Build
28
run: cmake --build build --parallel 8
29
+ # Unit tests are gated on NOT MSVC in CMakeLists.txt (utils/tests depend
30
+ # on pthread and POSIX APIs not available under MSVC), so the `check`
31
+ # target only exists on Linux/macOS. Skip the step on Windows.
32
- name: Run unit-tests
33
+ if: matrix.os != 'windows-latest'
34
run: cmake --build build --parallel 8 --target check
35
- name: Pack built binaries
36
run: cmake --build build --target package
0 commit comments