-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
69 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: multi platform test | ||
|
||
on: | ||
push: | ||
branches: [ "trunk", "develop" ] | ||
pull_request: | ||
branches: [ "trunk" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
|
||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
include: | ||
- os: windows-latest | ||
cpp_compiler: cl | ||
- os: ubuntu-latest | ||
cpp_compiler: g++ | ||
- os: macos-latest | ||
cpp_compiler: clang++ | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set reusable strings | ||
id: strings | ||
shell: bash | ||
run: echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" | ||
|
||
# - name: Install Catch2 Ubuntu | ||
# if: matrix.os == 'ubuntu-latest' | ||
# run: > | ||
# sudo apt-get update && sudo apt-get install catch2 | ||
|
||
# - name: Install Catch2 macOS | ||
# if: matrix.os == 'macos-latest' | ||
# run: > | ||
# brew install catch2 | ||
|
||
# - name: Install dependencies Window | ||
# if: matrix.os == 'windows-latest' | ||
# run: ./tools/depends.cmd | ||
# shell: cmd | ||
|
||
- name: Configure CMake | ||
run: > | ||
cmake -B ${{ steps.strings.outputs.build-output-dir }} | ||
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} | ||
-DCMAKE_BUILD_TYPE=Release | ||
-DBUILD_TESTING=ON | ||
-S ${{ github.workspace }} | ||
- name: Build | ||
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config Release | ||
|
||
- name: Test | ||
working-directory: ${{ steps.strings.outputs.build-output-dir }} | ||
run: ctest --build-config Release --output-on-failure -R dssp | ||
env: | ||
LIBCIFPP_DATA_DIR: ${{ steps.strings.outputs.build-output-dir }}/_deps/cifpp-src/rsrc | ||
|
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