mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 12:43:34 +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 (ubuntu-latest)",
|
||||||
"build (macos-latest)",
|
"build (macos-latest)",
|
||||||
"build-wasm",
|
"build-wasm",
|
||||||
"nightly-checks (wasm32-unknown-unknown)",
|
|
||||||
"nightly-checks (x86_64-unknown-linux-gnu)",
|
|
||||||
"build-android",
|
"build-android",
|
||||||
"markdownlint",
|
"markdownlint",
|
||||||
"run-examples",
|
"run-examples",
|
||||||
|
@ -13,7 +11,6 @@ status = [
|
||||||
"check-missing-examples-in-docs",
|
"check-missing-examples-in-docs",
|
||||||
# "check-unused-dependencies",
|
# "check-unused-dependencies",
|
||||||
"ci",
|
"ci",
|
||||||
"miri",
|
|
||||||
"check-compiles",
|
"check-compiles",
|
||||||
"build-and-install-on-iOS",
|
"build-and-install-on-iOS",
|
||||||
"run-examples-on-windows-dx12",
|
"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
|
CARGO_INCREMENTAL: 0
|
||||||
RUSTFLAGS: "-C debuginfo=0 -D warnings"
|
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:
|
ci:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue