Skip to content

Commit

Permalink
[ci] Print CIRCT version as Step Summary
Browse files Browse the repository at this point in the history
Change the printing of the CIRCT version to show up in the
GITHUB_STEP_SUMMARY.  This makes it easier to know what version CIRCT ran
with, particularly for a nightly run.

Signed-off-by: Schuyler Eldridge <[email protected]>
  • Loading branch information
seldridge committed Aug 17, 2023
1 parent c72d970 commit 4c8b6c0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ jobs:
with:
version: ${{ inputs.circt }}
github-token: ${{ github.token }}
- name: Print firtool version
run: |
echo "The CIRCT version used is:" >> $GITHUB_STEP_SUMMARY
echo \`\`\` >> $GITHUB_STEP_SUMMARY
firtool -version >> $GITHUB_STEP_SUMMARY
echo \`\`\` >> $GITHUB_STEP_SUMMARY
- name: Test
run: sbt ++${{ inputs.scala }} test
- name: Binary compatibility
Expand Down

0 comments on commit 4c8b6c0

Please sign in to comment.