Skip to content

Commit eff6184

Browse files
authored
Update coq-windows.yml
1 parent 356f072 commit eff6184

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/coq-windows.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,14 @@ jobs:
4444
uses: ocaml/setup-ocaml@v3
4545
with:
4646
ocaml-compiler: 4.13.1
47-
- run: Get-ChildItem -Path . -Filter "*.timing" -Recurse | Compress-Archive -DestinationPath timing-files.zip
47+
- name: aggregate timing files for upload
48+
run: |
49+
$files = Get-ChildItem -Path . -Filter "*.timing" -Recurse
50+
$files | ForEach-Object { Write-Output "Adding: $_" }
51+
$files | Compress-Archive -DestinationPath timing-files.zip -Force
4852
shell: pwsh
53+
- run: opam pin add 'ocamlfind>=1.9.7'
4954
- run: exit 1
50-
- run: opam pin add ocamlfind 'git+https://github.com/ocaml/ocamlfind.git#master'
5155
- run: opam pin add --kind=version coq ${{ env.COQ_VERSION }}
5256
- run: opam install js_of_ocaml
5357
- run: opam install conf-time conf-gcc
@@ -74,7 +78,11 @@ jobs:
7478
run: opam exec -- bash etc/ci/github-actions-make.sh -j${{ env.NJOBS }} c-files lite-generated-files
7579
- name: only-test-amd64-files-lite
7680
run: opam exec -- bash etc/ci/github-actions-make.sh -j${{ env.NJOBS }} only-test-amd64-files-lite SLOWEST_FIRST=1
77-
- run: Get-ChildItem -Path . -Filter "*.timing" -Recurse | Compress-Archive -DestinationPath timing-files.zip
81+
- name: aggregate timing files for upload
82+
run: |
83+
$files = Get-ChildItem -Path . -Filter "*.timing" -Recurse
84+
$files | ForEach-Object { Write-Output "Adding: $_" }
85+
$files | Compress-Archive -DestinationPath timing-files.zip -Force
7886
shell: pwsh
7987
# if: failure()
8088
- name: upload generated timing files

0 commit comments

Comments
 (0)