We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2695a8e commit 724a043Copy full SHA for 724a043
1 file changed
.github/workflows/common.yml
@@ -81,6 +81,7 @@ jobs:
81
build-and-test:
82
env:
83
QCHECK_MSG_INTERVAL: '60'
84
+ TIMELOGDIR: ${{ github.workspace }}
85
TIMEOUT: ${{ inputs.timeout }}
86
DUNE_PROFILE: ${{ inputs.dune_profile }}
87
OCAMLRUNPARAM: ${{ inputs.runparam }}
@@ -208,6 +209,7 @@ jobs:
208
209
echo "OPAMJOBS=1" >> $GITHUB_ENV
210
211
- name: Install Multicore Tests dependencies
212
+ id: dependencies
213
run: |
214
opam install . --deps-only --with-test
215
@@ -277,3 +279,7 @@ jobs:
277
279
}
278
280
echo "Test failed $failures times"
281
if: env.ONLY_TEST != '' && runner.os == 'Windows'
282
+
283
+ - name: Summarize test run times
284
+ run: opam exec -- dune build @cat-times
285
+ if: "success() || (failure() && steps.dependencies.conclusion == 'success')"
0 commit comments