Skip to content

Commit

Permalink
Back to powershell
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross authored Feb 5, 2025
1 parent 0fe1d6b commit 356f072
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/coq-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: 4.13.1
- run: opam exec -- find . -name '*.timing' | opam exec -- xargs tar -czvf timing-files.tgz
- run: Get-ChildItem -Path . -Filter "*.timing" -Recurse | Compress-Archive -DestinationPath timing-files.zip
shell: pwsh
- run: exit 1
- run: opam pin add ocamlfind 'git+https://github.com/ocaml/ocamlfind.git#master'
- run: opam pin add --kind=version coq ${{ env.COQ_VERSION }}
Expand Down Expand Up @@ -73,13 +74,14 @@ jobs:
run: opam exec -- bash etc/ci/github-actions-make.sh -j${{ env.NJOBS }} c-files lite-generated-files
- name: only-test-amd64-files-lite
run: opam exec -- bash etc/ci/github-actions-make.sh -j${{ env.NJOBS }} only-test-amd64-files-lite SLOWEST_FIRST=1
- run: opam exec -- find . -name '*.timing' | opam exec -- xargs tar -czvf timing-files.tgz
- run: Get-ChildItem -Path . -Filter "*.timing" -Recurse | Compress-Archive -DestinationPath timing-files.zip
shell: pwsh
# if: failure()
- name: upload generated timing files
uses: actions/upload-artifact@v4
with:
name: timing-files-windows
path: timing-files.tgz
path: timing-files.zip
if: failure()
- name: upload OCaml files
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 356f072

Please sign in to comment.