-
Notifications
You must be signed in to change notification settings - Fork 2.7k
[CI] Add cumulus + beefy companions #9010
Changes from 1 commit
bff60a7
deaeab7
21c3d80
98030be
4b68a08
5f05ce8
07747bc
00a925b
3b90256
cd97118
98f83ce
a9427dd
359820c
3002789
8c5363d
dc8d301
c90db6c
7df4a60
1b8c9d8
8181635
c476a9d
f5f920d
46988ba
c96f997
a7ee4a3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -433,7 +433,7 @@ check-polkadot-companion-status: | |||||
| <<: *docker-env | ||||||
| <<: *test-refs-no-trigger | ||||||
| script: | ||||||
| - ./.maintain/gitlab/check_companion_build.sh "$COMPANION_ORG" "$COMPANION_REPO" "$COMPANION_BUILD" | ||||||
| - ./.maintain/gitlab/check_companion_build.sh "$COMPANION_ORG" "$COMPANION_REPO" "$COMPANION_BUILD" "$COMPANION_DEPENDENCY" | ||||||
| after_script: | ||||||
| - cd "$COMPANION_REPO" && git rev-parse --abbrev-ref HEAD | ||||||
| allow_failure: true | ||||||
|
|
@@ -443,6 +443,7 @@ check-polkadot-companion-build: | |||||
| variables: | ||||||
| COMPANION_ORG: paritytech | ||||||
| COMPANION_REPO: polkadot | ||||||
| COMPANION_DEPENDENCY: paritytech/grandpa-bridge-gadget | ||||||
| allow_failure: true | ||||||
|
|
||||||
| check-cumulus-companion-build: | ||||||
|
|
@@ -451,8 +452,7 @@ check-cumulus-companion-build: | |||||
| COMPANION_ORG: paritytech | ||||||
| COMPANION_REPO: cumulus | ||||||
| COMPANION_BUILD: "cargo check" | ||||||
|
||||||
| COMPANION_BUILD: "cargo check" | |
| COMPANION_BUILD: "cargo check --benches --all --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.
How about cargo check --all-targets --workspace?
--all is deprecated in favour of --workspace https://doc.rust-lang.org/cargo/commands/cargo-check.html
--all-targets = --lib --bins --tests --benches --examples
Uh oh!
There was an error while loading. Please reload this page.