Override nightly versions if repo variable set for non scheduled runs (#524)

- [x] no changelog update needed
This commit is contained in:
Corwin 2023-12-05 22:09:13 +00:00 committed by GitHub
commit 90952b3de5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,49 +2,49 @@ name: Rust
on: on:
push: push:
branches: [ master ] branches: [master]
pull_request: pull_request:
branches: [ master ] branches: [master]
schedule: schedule:
- cron: '10 6 * * *' - cron: "10 6 * * *"
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
RUSTUP_TOOLCHAIN: ${{ !github.event.schedule && 'nightly-2023-12-01' || 'nightly' }}
jobs: jobs:
build: build:
name: Just CI name: Just CI
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- name: Set CARGO_TARGET_DIR - name: Set CARGO_TARGET_DIR
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
- name: Install build tools - name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential libelf-dev zip -y run: sudo apt-get update && sudo apt-get install build-essential libelf-dev zip -y
- name: Install Miri - name: Install Miri
run: | run: |
rustup toolchain install nightly --component miri rustup component add miri clippy rustfmt
rustup override set nightly
cargo miri setup cargo miri setup
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Cache - name: Cache
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: | path: |
~/.cargo/registry ~/.cargo/registry
~/.cargo/git ~/.cargo/git
~/target ~/target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: install mgba-test-runner - name: install mgba-test-runner
run: cargo install --path emulator/test-runner --verbose run: cargo install --path emulator/test-runner --verbose
- uses: extractions/setup-just@v1 - uses: extractions/setup-just@v1
- name: Setup mdBook - name: Setup mdBook
uses: peaceiris/actions-mdbook@v1 uses: peaceiris/actions-mdbook@v1
with: with:
mdbook-version: '0.4.13' mdbook-version: "0.4.13"
- name: Build and test all crates - name: Build and test all crates
run: just ci run: just ci
- name: Upload build artifacts - name: Upload build artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: example-games name: example-games
path: ~/target/*.gba path: ~/target/*.gba