From 1f68d089afa4d2adab09fc5da6ff48643ca9a0a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjell=20Hedstr=C3=B6m=20-=20seeking=20Senior=20Engineering?= =?UTF-8?q?=20roles=20as=20well=20as=20contract=20opportunities?= Date: Mon, 5 Feb 2024 10:11:40 -0700 Subject: [PATCH] updated to v3 --- .github/workflows/ctest.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ctest.yml b/.github/workflows/ctest.yml index c3d74a68..878e26e1 100644 --- a/.github/workflows/ctest.yml +++ b/.github/workflows/ctest.yml @@ -25,8 +25,6 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true - - jobs: build: strategy: @@ -42,7 +40,7 @@ jobs: #runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run Linux Build if: matrix.os == 'ubuntu-latest' @@ -51,6 +49,10 @@ jobs: - name: Run Mac Build if: matrix.os == 'macos-latest' run: echo "MacOS Latest" > release_mac + + - name: Run Windows Build + if: matrix.os == 'windows-latest' + run: echo "Windows Latest" > release_windows - name: Create Build Environment # Some projects don't allow in-source building, so create a separate build directory @@ -82,7 +84,7 @@ jobs: - name: Fatal Exit Example working-directory: ${{github.workspace}}/build - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' || matrix.os == 'windows-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"