diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 149358f..b8050d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Download ccl if: matrix.lisp == 'ccl' run: | - curl -o ccl.tar.gz --location 'https://github.com/Clozure/ccl/releases/download/v1.12/ccl-1.12-linuxx86.tar.gz' + curl -o ccl.tar.gz --location 'https://github.com/Clozure/ccl/releases/download/v1.12.2/ccl-1.12.2-linuxx86.tar.gz' tar -xzf ccl.tar.gz - name: Download sbcl @@ -133,5 +133,8 @@ jobs: fi test -f report cat report - ! grep -q "not ok" report + if grep -q "not ok" report; then + echo "Test failure detected in report!" + exit 1 + fi grep -q "ok" report