Skip to content

Commit

Permalink
Actually pack up static results for release.
Browse files Browse the repository at this point in the history
Now that the Build job is not running anymore, we need to get the
resulting binaries from the regular CI run.
  • Loading branch information
hzeller committed Dec 20, 2023
1 parent 5d5835e commit 4d4f1ff
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/verible-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,17 @@ jobs:
name: verible-bin
path: verible-bin.tar

- name: Pack up static results
if: matrix.mode = 'compile-static'
run: |
VERSION=$(git describe --match=v*)
bazel run -c opt :install -- verible-${VERSION}
tar cvzf verible-${VERSION}-linux-static-${matrix.arch}.tar.gz verible-${VERSION}
- name: 📤 Upload artifact
uses: actions/upload-artifact@v2
with:
path: verible-*.tar.gz

- name: 📤 Upload performance graphs
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 4d4f1ff

Please sign in to comment.