mirror of https://codeberg.org/topola/topola.git
CICD: add cli build (#37)
Topola missed `CLI` build test in CI/CD, Reviewed-on: https://codeberg.org/topola/topola/pulls/37 Co-authored-by: hakki <hakki@noreply.codeberg.org> Co-committed-by: hakki <hakki@noreply.codeberg.org>
This commit is contained in:
parent
e1b56875ed
commit
f0a193fc6e
|
|
@ -0,0 +1,14 @@
|
|||
matrix:
|
||||
include:
|
||||
- CHANNEL: stable
|
||||
FEATURES: cli,disable_contracts
|
||||
- CHANNEL: nightly
|
||||
FEATURES: cli
|
||||
|
||||
steps:
|
||||
build_cli:
|
||||
image: rust
|
||||
environment: [RUST_BACKTRACE=1,CARGO_TERM_COLOR=always]
|
||||
commands:
|
||||
- rustup default "$CHANNEL"
|
||||
- cargo build --features "$FEATURES" --bin "cli"
|
||||
Loading…
Reference in New Issue