debug(ci): run join_tests and tla_faithfulness separately

This commit is contained in:
2026-05-13 13:07:32 +03:00
parent 15a905bdd1
commit 113d7faafa
+7 -1
View File
@@ -27,6 +27,12 @@ jobs:
nim --version nim --version
echo "NIM_OK=1" echo "NIM_OK=1"
- name: Run join_tests
run: nim c -d:ssl --threads:on --path:src -r tests/join_tests.nim
- name: Run tla_faithfulness
run: nim c -d:ssl --threads:on --path:src -r tests/tla_faithfulness.nim
- name: Compile test_all - name: Compile test_all
run: nim c -d:ssl --threads:on --path:src tests/test_all.nim run: nim c -d:ssl --threads:on --path:src tests/test_all.nim
@@ -34,7 +40,7 @@ jobs:
run: ./tests/test_all > test_all.log 2>&1 run: ./tests/test_all > test_all.log 2>&1
- name: Upload test_all log to repo - name: Upload test_all log to repo
if: always() if: failure()
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | run: |