Skip to content

Commit

Permalink
Build and test the entire workspace
Browse files Browse the repository at this point in the history
With upcoming changes we will have not only the main crate (comprised of
two binaries), but an entire workspace containing extensions and other
support crates.
This change instructs the CI to build and test these crates as it does
for the main crate.
  • Loading branch information
d-e-s-o committed Apr 15, 2021
1 parent c04ff24 commit ac3bbae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ build-test:cargo:
- apt-get update
- apt-get install --assume-yes libudev-dev libhidapi-dev
- rustc --version && cargo --version
- cargo build --bins --tests --verbose
- cargo build --bins --tests --verbose --release
- cargo test --verbose
- cargo build --workspace --bins --tests --verbose
- cargo build --workspace --bins --tests --verbose --release
- cargo test --workspace --verbose

lint:clippy:
script:
Expand Down

0 comments on commit ac3bbae

Please sign in to comment.