Skip to content

Commit

Permalink
[WIP] print directories on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gunvirranu committed Sep 8, 2024
1 parent 6367597 commit c7ec974
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,22 @@ jobs:
- name: Build
run: cmake --build build

- name: Log some test metadata
if: matrix.os == 'windows-latest'
- name: Run tests on Unix
if: matrix.os != 'windows-latest'
working-directory: build/tests
run: ./test_perturb --duration --force-colors

- name: Run tests in Windows
if: matrix.os == 'windows-latest'
# working-directory: build/tests
run: |
dir
./test_perturb --version
dir build
dir build/tests
dir build/tests/Debug
dir build/tests/test_perturb.dir
./test_perturb --ltc
- name: Run tests
working-directory: build/tests
run: ./test_perturb --duration --force-colors
docs:
name: Docs
Expand Down

0 comments on commit c7ec974

Please sign in to comment.