From 7cab1fc7a2fbb904cb92b3ba26fc6e5e708dd8fa Mon Sep 17 00:00:00 2001 From: Johann Hemmann Date: Wed, 16 Jun 2021 18:04:21 +0200 Subject: [PATCH] `CI`: Don't install dependency which is included by default --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6cae6833..db39b441 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: - "!book/src/**" schedule: # runs 1 min after 2 or 1 AM (summer/winter) berlin time - - cron: '1 0 * * *' + - cron: "1 0 * * *" env: CARGO_TERM_COLOR: always @@ -42,9 +42,6 @@ jobs: - name: Install C libraries for tooling on ubuntu if: matrix.os == 'ubuntu-latest' run: sudo apt-get update && sudo apt-get install libudev-dev libusb-1.0-0-dev - - name: Install C libraries for tooling on macOS - if: matrix.os == 'macOS-latest' - run: brew install libusb - name: Check that all crates that can be compiled for the host build, check that defmt compiles with different features, run all unit tests on the host run: cargo xtask -d test-host