Skip to content

Commit

Permalink
Update cmake-multi-platform.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolm authored Jan 29, 2024
1 parent 8394c60 commit 4f8f974
Showing 1 changed file with 42 additions and 9 deletions.
51 changes: 42 additions & 9 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,21 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/

- name: Test
- name: Test precision
working-directory: ${{github.workspace}}/
run: ./test_precision
./test_fast
./benchmark_precision
./benchmark_test

- name: Test fast
working-directory: ${{github.workspace}}/
run: ./test_fast

- name: Benchmark precision
working-directory: ${{github.workspace}}/
run: ./benchmark_precision

- name: Benchmark test
working-directory: ${{github.workspace}}/
run: ./benchmark_test

build-macos:
name: macos
Expand All @@ -40,9 +49,21 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/

- name: Test
- name: Test precision
working-directory: ${{github.workspace}}/
run: ./test_precision

- name: Test fast
working-directory: ${{github.workspace}}/
run: ./test_precision && ./test_fast && ./benchmark_precision && ./benchmark_fast
run: ./test_fast

- name: Benchmark precision
working-directory: ${{github.workspace}}/
run: ./benchmark_precision

- name: Benchmark test
working-directory: ${{github.workspace}}/
run: ./benchmark_test

build-windows:
name: windows
Expand All @@ -59,6 +80,18 @@ jobs:
working-directory: ${{github.workspace}}\tests
run: cmake --build .

- name: Test
working-directory: ${{github.workspace}}\tests\Debug
run: ./test_precision && ./test_fast && ./benchmark_precision && ./benchmark_fast
- name: Test precision
working-directory: ${{github.workspace}}\tests\Debug
run: ./test_precision

- name: Test fast
working-directory: ${{github.workspace}}\tests\Debug
run: ./test_fast

- name: Benchmark precision
working-directory: ${{github.workspace}}\tests\Debug
run: ./benchmark_precision

- name: Benchmark test
working-directory: ${{github.workspace}}\tests\Debug
run: ./benchmark_test

0 comments on commit 4f8f974

Please sign in to comment.