Skip to content

Commit

Permalink
Windows path for gitactions? (#516)
Browse files Browse the repository at this point in the history
* Update ctest.yml and add Windows to CI pipeline gitactions.
  • Loading branch information
KjellKod authored Feb 3, 2024
1 parent f2b9f9b commit 9a8c0fc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

# The CMake configure and build commands are platform agnostic and should work equally
Expand Down Expand Up @@ -82,6 +82,8 @@ jobs:

- name: Fatal Exit Example
working-directory: ${{github.workspace}}/build
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
shell: bash
# hacky / crude and effective
run: ./g3log-FATAL-sigsegv || true && echo -e "\n\n=======================\n\nverifying SIGSEGV existed in stackdump\n\n\n\n" && cat /tmp/g3log*FATAL*.log | grep "SIGSEGV"
run: |
./g3log-FATAL-sigsegv || true && echo -e "\n\n=======================\n\nverifying SIGSEGV existed in stackdump\n\n\n\n" && cat /tmp/g3log*FATAL*.log | grep "SIGSEGV"

0 comments on commit 9a8c0fc

Please sign in to comment.