Skip to content

Commit

Permalink
Fixed CI checks for collections/result/buffers
Browse files Browse the repository at this point in the history
  • Loading branch information
davidedellagiustina committed Feb 22, 2023
1 parent 429e4b5 commit a079cc8
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,38 +115,38 @@ jobs:
- name: Install latest Rust toolchain
uses: actions-rs/toolchain@v1

- name: Install cargo-nono
run: cargo install cargo-nono
# - name: Install cargo-nono
# run: cargo install cargo-nono

- name: Install cargo-no-dev-deps
run: cargo install cargo-no-dev-deps --locked

- name: Check zenoh-collections
uses: actions-rs/cargo@v1
with:
command: nono
args: check --package zenoh-collections --no-default-features
command: check
args: --package zenoh-collections --no-default-features --target x86_64-unknown-none

- name: Check zenoh-result
uses: actions-rs/cargo@v1
with:
command: nono
args: check --package zenoh-result --no-default-features
command: check
args: --package zenoh-result --no-default-features --target x86_64-unknown-none

- name: Check zenoh-buffers
uses: actions-rs/cargo@v1
with:
command: nono
args: check --package zenoh-buffers
command: check
args: --package zenoh-buffers --target x86_64-unknown-none

- name: Check zenoh-protocol
uses: actions-rs/cargo@v1
with:
command: no-dev-deps
args: nono check --package zenoh-protocol --no-default-features
# - name: Check zenoh-protocol
# uses: actions-rs/cargo@v1
# with:
# command: no-dev-deps
# args: nono check --package zenoh-protocol --no-default-features

- name: Check zenoh-codec
uses: actions-rs/cargo@v1
with:
command: no-dev-deps
args: nono check --package zenoh-codec --no-default-features
# - name: Check zenoh-codec
# uses: actions-rs/cargo@v1
# with:
# command: no-dev-deps
# args: nono check --package zenoh-codec --no-default-features

0 comments on commit a079cc8

Please sign in to comment.