Skip to content

Commit

Permalink
Rename workflow, build stage 2
Browse files Browse the repository at this point in the history
  • Loading branch information
utaal committed Jul 31, 2022
1 parent 8ba5d78 commit b67dba9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/compile-rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build and upload binary of custom rust
name: rust-verification

on: [push] # to turn on CI on pull_request, change this to -> on: [push, pull_request]

Expand All @@ -23,7 +23,8 @@ jobs:
- name: build and install
run: |
cp config.toml.verify config.toml
./x.py install -i --stage 1
./x.py install -i --stage 2
cd install; tar -cvzf ../rust_install.tar.gz .; cd ../
# upload our rust binaries to github.
# When this ends, the binary can be downloaded at action tab of this github repository
Expand All @@ -32,6 +33,5 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: rust-bin-lib-etc
path: |
install
path: rust_install.tar.gz

0 comments on commit b67dba9

Please sign in to comment.