File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,14 @@ jobs:
44
44
uses : ocaml/setup-ocaml@v3
45
45
with :
46
46
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
48
52
shell : pwsh
53
+ - run : opam pin add 'ocamlfind>=1.9.7'
49
54
- run : exit 1
50
- - run : opam pin add ocamlfind 'git+https://github.com/ocaml/ocamlfind.git#master'
51
55
- run : opam pin add --kind=version coq ${{ env.COQ_VERSION }}
52
56
- run : opam install js_of_ocaml
53
57
- run : opam install conf-time conf-gcc
74
78
run : opam exec -- bash etc/ci/github-actions-make.sh -j${{ env.NJOBS }} c-files lite-generated-files
75
79
- name : only-test-amd64-files-lite
76
80
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
78
86
shell : pwsh
79
87
# if: failure()
80
88
- name : upload generated timing files
You can’t perform that action at this time.
0 commit comments