Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

[CI] check evmbin build #11096

Merged
merged 1 commit into from
Sep 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,13 @@ cargo-check 2 3:
- time cargo check --target $CARGO_TARGET --locked --manifest-path util/io/Cargo.toml --features "mio" --verbose --color=always
- sccache -s

cargo-check-evmbin:
stage: test
<<: *docker-cache-status
script:
- time cargo check -p evmbin --target $CARGO_TARGET --locked --verbose --color=always
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would have thought that having evmbin in the members of the workspace was sufficient and that cargo check --all would run on all members listed. It's not and I'm not sure if that's a bug or not.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems different, e.g. cargo check --all passed on beta, but cargo check -p evmbin. Probably have to do with how features are picked up.

- sccache -s

cargo-check-benches:
stage: test
<<: *docker-cache-status
Expand Down