Skip to content

Commit

Permalink
Don't let nightly builds fail CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sirhcel committed Mar 28, 2024
1 parent 8d94b1a commit 30c072c
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -245,24 +245,33 @@ jobs:
disable_tests: true
target: x86_64-unknown-netbsd

# --------------------------------------------------------------------------
# NIGHTLY BUILD

aarch64-apple-darwin-nightly:
# Prevent nightly builds from failing CI.
continue-on-error: true
uses: ./.github/workflows/build.yaml
with:
disable_tests: true
runs_on: macos-latest
target: aarch64-apple-darwin
toolchain: nightly

x86_64-pc-windows-msvc-nightly:
# Prevent nightly builds from failing CI.
continue-on-error: true
uses: ./.github/workflows/build.yaml
with:
runs_on: windows-2019
target: x86_64-pc-windows-msvc
toolchain: nightly

x86_64-unknown-linux-gnu-nightly:
# Prevent nightly builds from failing CI.
continue-on-error: true
uses: ./.github/workflows/build.yaml
with:
extra_packages: libudev-dev
target: x86_64-unknown-linux-gnu
toolchain: nightly

aarch64-apple-darwin-nightly:
uses: ./.github/workflows/build.yaml
with:
disable_tests: true
runs_on: macos-latest
target: aarch64-apple-darwin
toolchain: nightly

0 comments on commit 30c072c

Please sign in to comment.