Skip to content

Commit

Permalink
remove nightly from CI/bors (bevyengine#5333)
Browse files Browse the repository at this point in the history
# Objective

- After a few recent failures, nightly in CI seems too costly to keep

## Solution

- remove from CI/bors
  • Loading branch information
mockersf authored and ItsDoot committed Feb 1, 2023
1 parent e8bacc7 commit 22966fe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 32 deletions.
3 changes: 0 additions & 3 deletions .github/bors.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ status = [
"build (ubuntu-latest)",
"build (macos-latest)",
"build-wasm",
"nightly-checks (wasm32-unknown-unknown)",
"nightly-checks (x86_64-unknown-linux-gnu)",
"build-android",
"markdownlint",
"run-examples",
Expand All @@ -13,7 +11,6 @@ status = [
"check-missing-examples-in-docs",
# "check-unused-dependencies",
"ci",
"miri",
"check-compiles",
"build-and-install-on-iOS",
"run-examples-on-windows-dx12",
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,35 +38,6 @@ jobs:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-C debuginfo=0 -D warnings"

nightly-checks:
strategy:
matrix:
target: [wasm32-unknown-unknown, x86_64-unknown-linux-gnu]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.NIGHTLY_TOOLCHAIN }}
target: ${{ matrix.target }}
override: true
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ubuntu-latest-cargo-build-stable-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml') }}
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Check wasm
uses: actions-rs/cargo@v1
with:
command: check
args: --target ${{ matrix.target }}

ci:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 22966fe

Please sign in to comment.