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 5d8ebae commit 2fc3568Copy full SHA for 2fc3568
.github/workflows/ci.yml
@@ -244,12 +244,18 @@ jobs:
244
fi
245
shell: bash
246
247
+ - name: Compiler build state key
248
+ id: compiler-build-state-key
249
+ run: |
250
+ echo "value=compiler-build-state-v1-${{ matrix.os }}-${{ matrix.ocaml_compiler }}-${{ hashFiles('dune-project') }}" \
251
+ | sed 's/,/-/g' >> "$GITHUB_OUTPUT"
252
+
253
- name: Restore compiler build state
254
id: compiler-build-state
255
uses: actions/cache@v4
256
with:
257
path: _build
- key: compiler-build-state-v1-${{ matrix.os }}-${{ matrix.ocaml_compiler }}-${{ hashFiles('dune-project') }}
258
+ key: ${{ steps.compiler-build-state-key.outputs.value }}
259
260
- name: Build compiler
261
if: runner.os != 'Linux'
0 commit comments