Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolm committed Jan 29, 2024
2 parents 10c2f63 + 3334c84 commit c1257fc
Showing 1 changed file with 35 additions and 7 deletions.
42 changes: 35 additions & 7 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +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_fast
run: ./test_precision

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

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

- name: Benchmark fast
working-directory: ${{github.workspace}}/
run: ./benchmark_fast

build-macos:
name: macos
Expand All @@ -37,9 +49,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_fast
run: ./test_precision

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

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

- name: Benchmark fast
working-directory: ${{github.workspace}}/
run: ./benchmark_fast

build-windows:
name: windows
Expand All @@ -56,6 +80,10 @@ 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

0 comments on commit c1257fc

Please sign in to comment.