Skip to content

Commit

Permalink
Auto merge of #2981 - RalfJung:style, r=RalfJung
Browse files Browse the repository at this point in the history
style checks: use latest rustc for cron job
  • Loading branch information
bors committed Jul 16, 2023
2 parents 606e29a + 580a318 commit 4c875ad
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,12 @@ jobs:
run: cargo install -f rustup-toolchain-install-master

- name: Install "master" toolchain
run: ./miri toolchain
run: |
if [[ ${{ github.event_name }} == 'schedule' ]]; then
echo "Building against latest rustc git version"
git ls-remote https://github.com/rust-lang/rust/ HEAD | cut -f 1 > rust-version
fi
./miri toolchain
- name: Show Rust version
run: |
Expand Down

0 comments on commit 4c875ad

Please sign in to comment.