Skip to content

Commit

Permalink
Use make-pretty-timed to display timing info
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Sep 26, 2023
1 parent 82396fc commit 19fc387
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/coq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,18 @@ jobs:
# Work around https://github.com/actions/checkout/issues/766
git config --global --add safe.directory "*"
startGroup 'make -j2 TIMED=1'
make -j2 TIMED=1
make -j2 TIMED=1 make-pretty-timed
cat time-of-build.log >> time-of-build-all.log
endGroup
startGroup 'make print-pretty-timed'
make print-pretty-timed
endGroup
startGroup 'make perf TIMED=1'
make perf TIMED=1
make TGTS="perf" TIMED=1 make-pretty-timed
cat time-of-build.log >> time-of-build-all.log
endGroup
startGroup 'make print-pretty-timed'
make print-pretty-timed
endGroup
startGroup 'make validate -j2'
make validate -j2
Expand All @@ -115,6 +123,9 @@ jobs:
startGroup 'make copy-pdf copy-doc OUTPUT="doc-build/${{ matrix.COQ_VERSION }}"'
make copy-pdf copy-doc OUTPUT="doc-build/${{ matrix.COQ_VERSION }}"
endGroup
startGroup 'make print-pretty-timed'
make print-pretty-timed TIME_OF_BUILD_FILE="time-of-build-all.log"
endGroup
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 19fc387

Please sign in to comment.