diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 0a7f42058..a6265b0d6 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -31,6 +31,11 @@ jobs: password: ${{ secrets.GHCR_PASSWORD }} options: -v ${{ github.workspace }}/compiler:/compiler run: | + echo "Debug: ccache statistics (prior to the build):" + ccache -s cd /compiler pip install pytest - make BUILD_DIR=/build test + rm -rf /build + make CCACHE=ON BUILD_DIR=/build test + echo "Debug: ccache statistics (after the build):" + ccache -s