Skip to content

Commit 45e581b

Browse files
committed
Revert "Made the CI workflow and justfile use the same toolchain as the source"
This reverts commit 58c6117.
1 parent 58c6117 commit 45e581b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
- name: Install Rust toolchain
2727
uses: dtolnay/rust-toolchain@master
2828
with:
29-
toolchain: 1.83
29+
toolchain: nightly-2025-02-26
3030
components: clippy, rustfmt
3131

3232
- name: Install protoc
33-
run: sudo provisioning/protoc.sh
33+
run: sudo apt-get install protobuf-compiler
3434

3535
- name: Setup just
3636
uses: extractions/setup-just@v2

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Makes sure the same toolchain as the source is installed
2-
toolchain := 1.83
1+
# Makes sure the nightly-2025-02-26 toolchain is installed
2+
toolchain := "nightly-2025-02-26"
33

44
fmt:
55
rustup toolchain install {{toolchain}} > /dev/null 2>&1 && \

0 commit comments

Comments
 (0)