mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
remove nightly from CI/bors (#5333)
# Objective - After a few recent failures, nightly in CI seems too costly to keep ## Solution - remove from CI/bors
This commit is contained in:
parent
40d4992401
commit
e0a8087408
2 changed files with 0 additions and 32 deletions
3
.github/bors.toml
vendored
3
.github/bors.toml
vendored
|
@ -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",
|
||||
|
@ -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",
|
||||
|
|
29
.github/workflows/ci.yml
vendored
29
.github/workflows/ci.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue