Skip to content

Commit c6332b1

Browse files
committed
Check hal in GHA, small crates on mac, build hil on vm
1 parent 85c314d commit c6332b1

File tree

2 files changed

+20
-23
lines changed

2 files changed

+20
-23
lines changed

.github/workflows/ci.yml

+8-17
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
esp-hal:
4343
name: esp-hal (${{ matrix.device.soc }})
44-
runs-on: macos-m1-self-hosted
44+
runs-on: ubuntu-latest
4545
env:
4646
SSID: SSID
4747
PASSWORD: PASSWORD
@@ -72,19 +72,10 @@ jobs:
7272
target: riscv32imc-unknown-none-elf,riscv32imac-unknown-none-elf
7373
toolchain: ${{ env.MSRV }}
7474
components: rust-src
75-
- name: install esp toolchain
76-
run: |
77-
if [ ! -f "$HOME/.cargo/bin/espup" ]; then
78-
curl -L https://github.com/esp-rs/espup/releases/latest/download/espup-aarch64-apple-darwin -o "$HOME/.cargo/bin/espup"
79-
chmod a+x "$HOME/.cargo/bin/espup"
80-
fi
81-
82-
source "$HOME/.cargo/env"
83-
"$HOME/.cargo/bin/espup" install -l debug --export-file $HOME/exports --targets all --toolchain-version 1.84.0.0
84-
source "$HOME/exports"
85-
echo "$PATH" >> "$GITHUB_PATH"
86-
echo "LIBCLANG_PATH=${LIBCLANG_PATH}" >> "$GITHUB_ENV"
87-
rustup override unset
75+
- uses: esp-rs/[email protected]
76+
with:
77+
ldproxy: false
78+
version: 1.84.0.0
8879

8980
- uses: Swatinem/rust-cache@v2
9081

@@ -96,7 +87,7 @@ jobs:
9687
toolchain: ${{ matrix.device.toolchain }}
9788

9889
extras:
99-
runs-on: [self-hosted, X64]
90+
runs-on: macos-m1-self-hosted
10091

10192
steps:
10293
- uses: actions/checkout@v4
@@ -181,7 +172,7 @@ jobs:
181172
# Format
182173

183174
rustfmt:
184-
runs-on: [self-hosted, X64]
175+
runs-on: macos-m1-self-hosted
185176

186177
steps:
187178
- uses: actions/checkout@v4
@@ -200,7 +191,7 @@ jobs:
200191
# host tests
201192

202193
host-tests:
203-
runs-on: [self-hosted, X64]
194+
runs-on: macos-m1-self-hosted
204195

205196
steps:
206197
- uses: actions/checkout@v4

.github/workflows/hil.yml

+12-6
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env:
3030
jobs:
3131
build-xtasks:
3232
name: Build xtasks | ${{ matrix.host.arch }}
33-
runs-on: [self-hosted, X64]
33+
runs-on: linux-x86_64-self-hosted
3434

3535
strategy:
3636
fail-fast: false
@@ -70,7 +70,6 @@ jobs:
7070

7171
build-tests:
7272
name: Build HIL Tests | ${{ matrix.target.soc }}
73-
runs-on: macos-m1-self-hosted
7473

7574
strategy:
7675
fail-fast: false
@@ -79,19 +78,28 @@ jobs:
7978
# RISC-V devices:
8079
- soc: esp32c2
8180
rust-target: riscv32imc-unknown-none-elf
81+
runner: esp32c2-26mhz
8282
- soc: esp32c3
8383
rust-target: riscv32imc-unknown-none-elf
84+
runner: esp32c3
8485
- soc: esp32c6
8586
rust-target: riscv32imac-unknown-none-elf
87+
runner: esp32c6
8688
- soc: esp32h2
8789
rust-target: riscv32imac-unknown-none-elf
90+
runner: esp32h2
8891
# # Xtensa devices:
8992
- soc: esp32
9093
rust-target: xtensa-esp32-none-elf
94+
runner: esp32
9195
- soc: esp32s2
9296
rust-target: xtensa-esp32s2-none-elf
97+
runner: esp32s2
9398
- soc: esp32s3
9499
rust-target: xtensa-esp32s3-none-elf
100+
runner: esp32s3
101+
102+
runs-on: [self-hosted, "X64", "${{ matrix.target.runner }}"]
95103

96104
steps:
97105
- uses: actions/checkout@v4
@@ -112,10 +120,8 @@ jobs:
112120
# Install the Rust toolchain for Xtensa devices:
113121
- if: contains(fromJson('["esp32", "esp32s2", "esp32s3"]'), matrix.target.soc)
114122
run: |
115-
if [ ! -f "$HOME/.cargo/bin/espup" ]; then
116-
curl -L https://github.com/esp-rs/espup/releases/latest/download/espup-aarch64-apple-darwin -o "$HOME/.cargo/bin/espup"
117-
chmod a+x "$HOME/.cargo/bin/espup"
118-
fi
123+
curl -L https://github.com/esp-rs/espup/releases/latest/download/espup-x86_64-unknown-linux-gnu -o "$HOME/.cargo/bin/espup"
124+
chmod a+x "$HOME/.cargo/bin/espup"
119125
120126
source "$HOME/.cargo/env"
121127
"$HOME/.cargo/bin/espup" install -l debug --export-file $HOME/exports --targets all --toolchain-version 1.84.0.0

0 commit comments

Comments
 (0)