File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ jobs:
153
153
# matrix.ocaml_compiler may contain commas
154
154
- name : Get OPAM cache key
155
155
shell : bash
156
- run : echo "opam_cache_key=opam-env-v6 -${{ matrix.os }}-${{ matrix.ocaml_compiler }}-${{ hashFiles('dune-project') }}" | sed 's/,/-/g' >> $GITHUB_ENV
156
+ run : echo "opam_cache_key=opam-env-v7 -${{ matrix.os }}-${{ matrix.ocaml_compiler }}-${{ matrix.run_reanalyze }}-${{ hashFiles('dune-project') }}" | sed 's/,/-/g' >> $GITHUB_ENV
157
157
158
158
- name : Restore OPAM environment
159
159
id : cache-opam-env
@@ -191,6 +191,10 @@ jobs:
191
191
if : steps.cache-opam-env.outputs.cache-hit != 'true'
192
192
run : opam install . --deps-only --with-test
193
193
194
+ - name : " Install reanalyze"
195
+ if : matrix.run_reanalyze
196
+ run : opam install reanalyze
197
+
194
198
- name : Cache OPAM environment
195
199
if : steps.cache-opam-env.outputs.cache-hit != 'true'
196
200
uses : actions/cache/save@v4
@@ -303,9 +307,7 @@ jobs:
303
307
304
308
- name : " Syntax: Run reanalyze"
305
309
if : matrix.run_reanalyze
306
- run : |
307
- opam install reanalyze
308
- opam exec -- make reanalyze
310
+ run : opam exec -- make reanalyze
309
311
310
312
- name : Build runtime/stdlib
311
313
run : ./scripts/buildRuntime.sh
You can’t perform that action at this time.
0 commit comments