Skip to content

Commit

Permalink
Run tests on more platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
lmoureaux authored and jwrober committed Dec 29, 2023
1 parent 0cfb15c commit 4298d9d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ jobs:
- name: Build
run: |
cmake --build build
- name: Test
run: |
cmake --build build --target test
windows:
name: "Windows MSYS2 (gcc)"
Expand Down Expand Up @@ -157,6 +160,9 @@ jobs:
- name: Build
run: |
cmake --build build
#- name: Test
# run: |
# cmake --build build --target test
- name: Install
run: |
cmake --build build --target install
Expand Down Expand Up @@ -208,6 +214,8 @@ jobs:
-DCMAKE_TOOLCHAIN_FILE="${{env.VCPKG_ROOT}}/scripts/buildsystems/vcpkg.cmake" -A x64 -T ClangCL
- name: Building
run: cmake --build build --config Debug
- name: Test
run: cmake --build build --target test

os_x:
name: "macOS"
Expand Down Expand Up @@ -240,6 +248,9 @@ jobs:
with:
configurePreset: 'fullrelease-macos'
buildPreset: 'fullrelease-macos'
- name: Test
run: |
cmake --build build --target test
- name: Split Branch Name
env:
BRANCH: ${{github.ref_name}}
Expand Down Expand Up @@ -319,6 +330,9 @@ jobs:
- name: Build
run: |
cmake --build build
- name: Test
run: |
cmake --build build --target test
- name: Install
run: |
DESTDIR=$PWD/build/install cmake --build build --target install
Expand Down

0 comments on commit 4298d9d

Please sign in to comment.