Skip to content

Commit

Permalink
ci: remove nightly from CI
Browse files Browse the repository at this point in the history
Signed-off-by: Matheus T. dos Santos <[email protected]>
  • Loading branch information
matheuswhite committed Aug 30, 2024
1 parent df56f30 commit cdc26c1
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,45 +13,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true

- name: Install libudev-sys
run: |
sudo apt-get install -y libudev-dev
- name: Build
run: |
cargo +nightly build --release --verbose
cargo build --release --verbose
build-windows:
name: Check on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- name: Build
run: |
cargo +nightly build --release --verbose
cargo build --release --verbose
build-macos:
name: Check on MacOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true

- name: Build
run: |
cargo +nightly build --release --verbose
cargo build --release --verbose

0 comments on commit cdc26c1

Please sign in to comment.