Skip to content

Commit 374f316

Browse files
committedJan 31, 2025
Build xtasks on the same runner
1 parent e77a91f commit 374f316

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed
 

‎.github/workflows/hil.yml

+14-15
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,8 @@ env:
2929

3030
jobs:
3131
build-xtasks:
32-
name: Build xtasks | ${{ matrix.host.arch }}
33-
runs-on: macos-m1-self-hosted
34-
35-
strategy:
36-
fail-fast: false
37-
matrix:
38-
host:
39-
- arch: armv7
40-
rust-target: armv7-unknown-linux-gnueabihf
41-
- arch: aarch64
42-
rust-target: aarch64-unknown-linux-gnu
32+
name: Build xtasks
33+
runs-on: ubuntu-latest
4334

4435
steps:
4536
- uses: actions/checkout@v4
@@ -60,13 +51,21 @@ jobs:
6051
run: cargo install cross
6152

6253
- name: Build xtasks
63-
run: cross build --release --target ${{ matrix.host.rust-target }} -p xtask
54+
run: |
55+
cross build --release --target armv7-unknown-linux-gnueabihf -p xtask
56+
cross build --release --target aarch64-unknown-linux-gnu -p xtask
57+
58+
- name: Upload artifact | armv7-unknown-linux-gnueabihf
59+
uses: actions/upload-artifact@v4
60+
with:
61+
name: xtask-armv7
62+
path: target/armv7-unknown-linux-gnueabihf/release/xtask
6463

65-
- name: Upload artifact
64+
- name: Upload artifact | aarch64-unknown-linux-gnu
6665
uses: actions/upload-artifact@v4
6766
with:
68-
name: xtask-${{ matrix.host.arch }}
69-
path: target/${{ matrix.host.rust-target }}/release/xtask
67+
name: xtask-aarch64
68+
path: target/aarch64-unknown-linux-gnu/release/xtask
7069

7170
build-tests:
7271
name: Build HIL Tests | ${{ matrix.target.soc }}

0 commit comments

Comments
 (0)