Skip to content

Commit 6ac56a2

Browse files
Update channels being used in CI jobs (esp-rs#1910)
* ci: Use stable to build HIL tests * ci: Remove useless line * fix: Avoid setting toolchain based on the target
1 parent 3473dda commit 6ac56a2

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ jobs:
4040
esp-hal:
4141
name: esp-hal (${{ matrix.device.soc }})
4242
runs-on: ubuntu-latest
43-
continue-on-error: ${{ matrix.device.toolchain == 'nightly' }}
4443
env:
4544
SSID: SSID
4645
PASSWORD: PASSWORD
@@ -199,7 +198,7 @@ jobs:
199198
uses: dtolnay/rust-toolchain@v1
200199
with:
201200
target: ${{ matrix.target.rust-target }}
202-
toolchain: nightly
201+
toolchain: stable
203202
components: rust-src
204203
# Install the Rust toolchain for Xtensa devices:
205204
- if: contains(fromJson('["esp32", "esp32s2", "esp32s3"]'), matrix.target.soc)

xtask/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ pub fn build_documentation(
128128

129129
// Build up an array of command-line arguments to pass to `cargo`:
130130
let builder = CargoArgsBuilder::default()
131-
.toolchain(if chip.is_xtensa() { "esp" } else { "nightly" })
132131
.subcommand("doc")
133132
.target(target)
134133
.features(&features)

0 commit comments

Comments
 (0)