Skip to content

Commit 162373c

Browse files
committed
Run rustup update on pipeline.
1 parent fda0f1d commit 162373c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- name: Build
2121
id: build
2222
run: |
23+
rustup update
2324
cargo build --release
2425
echo "Copy $DEB to icboard.deb"
2526
mkdir bin
@@ -60,6 +61,7 @@ jobs:
6061
- name: Build
6162
id: build
6263
run: |
64+
rustup update
6365
cargo build --release
6466
echo "Copy $DEB to icy_board.deb"
6567
mkdir bin
@@ -99,6 +101,7 @@ jobs:
99101
echo "Version: $version"
100102
- name: Install rust compilation targets
101103
run: |
104+
rustup update
102105
rustup target add aarch64-apple-darwin
103106
rustup target add x86_64-apple-darwin
104107
- name: Build

.github/workflows/run_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- name: Check formatting
1616
run: |
17+
rustup update
1718
cargo fmt --all -- --check
1819
- run: rustup component add clippy
1920
- name: Install Dependencies

0 commit comments

Comments
 (0)