Skip to content

Commit

Permalink
Update coq-alpine.yml with TIMING=1
Browse files Browse the repository at this point in the history
We also don't create the timed file (yet)
  • Loading branch information
JasonGross authored Nov 11, 2023
1 parent 3316f8e commit 877327b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/coq-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ jobs:
run: etc/ci/describe-system-config.sh
- name: make deps
shell: alpine.sh {0}
run: make TIMED=1 -j2 deps
run: make TIMED=1 TIMING=1 -j2 deps
- name: all-except-generated
shell: alpine.sh {0}
run: make TIMED=1 -j2 all-except-generated
run: make TIMED=1 TIMING=1 -j2 all-except-generated
- name: generated-files
shell: alpine.sh {0}
run: make TIMED=1 -j2 generated-files
run: make TIMED=1 TIMING=1 -j2 generated-files
- run: tar -czvf generated-files.tgz fiat-*/
if: ${{ failure() }}
- name: upload generated files
Expand All @@ -71,15 +71,15 @@ jobs:
if: always ()
- name: standalone-haskell
shell: alpine.sh {0}
run: make TIMED=1 -j1 standalone-haskell GHCFLAGS='+RTS -M6G -RTS'
run: make TIMED=1 TIMING=1 -j1 standalone-haskell GHCFLAGS='+RTS -M6G -RTS'
- name: upload Haskell files
uses: actions/upload-artifact@v3
with:
name: ExtractionHaskell-${{ matrix.alpine }}
path: src/ExtractionHaskell
if: always ()
- name: display timing info
run: cat time-of-build-pretty.log
run: cat time-of-build-pretty.log || true
- name: display per-line timing info
run: etc/ci/github-actions-display-per-line-timing.sh

Expand Down

0 comments on commit 877327b

Please sign in to comment.