diff --git a/.github/workflows/coq-windows.yml b/.github/workflows/coq-windows.yml index 87421e7f45..73156d7cdc 100644 --- a/.github/workflows/coq-windows.yml +++ b/.github/workflows/coq-windows.yml @@ -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 }} @@ -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