We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b123655 commit 8ac3549Copy full SHA for 8ac3549
.github/workflows/ci.yml
@@ -401,6 +401,14 @@ jobs:
401
# path: ./tests/benchmark-cache
402
# key: syntax-benchmark-v1
403
404
+ # Prevent ninja being rebuilt on playground build step
405
+ - name: Touch ninja/ninja
406
+ if: ${{ matrix.build_playground && steps.ninja-build-cache.outputs.cache-hit == 'true' }}
407
+ run: |
408
+ ls -l ninja/ninja${{ runner.os == 'Windows' && '.exe' || '' }}
409
+ touch ninja/ninja${{ runner.os == 'Windows' && '.exe' || '' }}
410
411
+
412
- name: Build playground compiler
413
if: matrix.build_playground
414
run: opam exec -- make playground
0 commit comments