Skip to content

Commit

Permalink
Disable nightly rust checks for bors (bevyengine#3427)
Browse files Browse the repository at this point in the history
This is a temporary measure while we wait for rust-lang/rust#92163 to be resolved.
  • Loading branch information
cart committed Dec 24, 2021
1 parent 79d36e7 commit 08b5234
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 29 deletions.
6 changes: 3 additions & 3 deletions .github/bors.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ status = [
"build (stable, windows-latest)",
"build (stable, ubuntu-latest)",
"build (stable, macos-latest)",
"build (nightly, ubuntu-latest)",
# "build (nightly, ubuntu-latest)",
"build-wasm (stable, ubuntu-latest)",
"build-wasm (nightly, ubuntu-latest)",
# "build-wasm (nightly, ubuntu-latest)",
"build-android",
"markdownlint",
"check-markdown-links",
"run-examples",
"check-doc",
"check-missing-examples-in-docs",
"check-unused-dependencies",
# "check-unused-dependencies",
"ci",
"check-benches",
]
Expand Down
56 changes: 30 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
build:
strategy:
matrix:
toolchain: [stable, nightly]
# TODO: re-enable nightly checks
# toolchain: [stable, nightly]
toolchain: [stable]
os: [windows-latest, ubuntu-latest, macos-latest]
exclude:
- os: macos-latest
Expand Down Expand Up @@ -96,7 +98,9 @@ jobs:
build-wasm:
strategy:
matrix:
toolchain: [stable, nightly]
# TODO: re-enable nightly checks
# toolchain: [stable, nightly]
toolchain: [stable]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -290,27 +294,27 @@ jobs:
file-types: '[".rs"]'
exclude-folders: '["./examples/ios"]'
exclude-files: '[]'

check-unused-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-check-unused-dependencies-${{ hashFiles('**/Cargo.toml') }}
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Installs cargo-udeps
run: cargo install --force cargo-udeps
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Run cargo udeps
run: cargo udeps
# TODO: re-enable nightly checks
# check-unused-dependencies:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/cache@v2
# with:
# path: |
# ~/.cargo/bin/
# ~/.cargo/registry/index/
# ~/.cargo/registry/cache/
# ~/.cargo/git/db/
# target/
# key: ${{ runner.os }}-cargo-check-unused-dependencies-${{ hashFiles('**/Cargo.toml') }}
# - uses: actions-rs/toolchain@v1
# with:
# toolchain: nightly
# override: true
# - name: Installs cargo-udeps
# run: cargo install --force cargo-udeps
# - name: Install alsa and udev
# run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
# - name: Run cargo udeps
# run: cargo udeps

0 comments on commit 08b5234

Please sign in to comment.