Use specific Rust nightly version for CI cargo fmt (fixes #3467) (#3577)

* Use specific Rust nightly version for CI cargo fmt (fixes #3467)

* fix

* fix
This commit is contained in:
Nutomic 2023-07-12 11:15:28 +02:00 committed by GitHub
parent 1d38aad9d3
commit c060546ffa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -36,9 +36,9 @@ pipeline:
commands: commands:
# need make existing toolchain available # need make existing toolchain available
- cp ~/.cargo . -r - cp ~/.cargo . -r
- rustup toolchain install nightly - rustup toolchain install nightly-2023-07-10
- rustup component add rustfmt --toolchain nightly - rustup component add rustfmt --toolchain nightly-2023-07-10
- cargo +nightly fmt -- --check - cargo +nightly-2023-07-10 fmt -- --check
# when: # when:
# platform: linux/amd64 # platform: linux/amd64