Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Don't install MacOS dependency which is included by default #510

Merged
merged 1 commit into from
Jun 16, 2021
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
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down