From d356fa40c66db08c90c7ed37581873e08c4fa9cd Mon Sep 17 00:00:00 2001 From: Christopher Swenson Date: Mon, 12 Feb 2024 20:16:35 -0800 Subject: [PATCH] Enable all tests --- .github/workflows/test.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e71c04e..79afd03 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,23 +2,23 @@ on: push: jobs: - # test-liunux: - # strategy: - # matrix: - # cc: [gcc-10, gcc-11, gcc-12, gcc-13, clang-13, clang-14, clang-15] - # runs-on: ubuntu-22.04 - # steps: - # - name: Checkout code - # uses: actions/checkout@v2 - # - name: test - # run: make CC=${{ matrix.cc }} - # test-macos: - # runs-on: macos-latest - # steps: - # - name: Checkout code - # uses: actions/checkout@v2 - # - name: test - # run: make + test-liunux: + strategy: + matrix: + cc: [gcc-10, gcc-11, gcc-12, gcc-13, clang-13, clang-14, clang-15] + runs-on: ubuntu-22.04 + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: test + run: make CC=${{ matrix.cc }} + test-macos: + runs-on: macos-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: test + run: make test-windows: runs-on: windows-latest steps: @@ -32,4 +32,4 @@ jobs: run: ls - shell: bash name: stresstest - run: gdb -batch -ex "run" -ex "bt" ./stresstest.exe 2>&1 | grep -v ^"No stack."$ + run: ./stresstest.exe