-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: move nightly job
to the CI.
#770
Changes from 5 commits
80a5a60
63977c6
c27e597
9cd263b
66a0c47
cffb3e4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,9 @@ jobs: | |
run: | | ||
cargo build -p polkadot --release --features fast-runtime | ||
./target/release/polkadot --version | ||
strip -s ./target/release/polkadot | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. strip binaries to make the download faster |
||
strip -s ./target/release/polkadot-prepare-worker | ||
strip -s ./target/release/polkadot-execute-worker | ||
|
||
- name: upload polkadot binary | ||
uses: actions/upload-artifact@v3 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ jobs: | |
cd staking-miner-playground | ||
cargo build --release --features test-trimming | ||
./target/release/staking-miner-playground --version | ||
strip -s ./target/release/staking-miner-playground | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. strip binary to make the download faster, this is over 1GB unstripped. |
||
|
||
- name: upload staking-miner-playground binary | ||
uses: actions/upload-artifact@v3 | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,3 @@ anyhow = "1" | |
assert_cmd = "2.0" | ||
sp-storage = "17.0.0" | ||
regex = "1" | ||
|
||
[features] | ||
default = [] | ||
slow-tests = [] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed this path because it was not found in the default path, not sure how it worked before 🤔