Skip to content

Commit 7a55ab9

Browse files
committed
define target
1 parent 7b3986a commit 7a55ab9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181

8282
strategy:
8383
matrix:
84-
target: [x86_64, arm64]
84+
target: [x86_64, aarch64]
8585

8686
steps:
8787
- uses: actions/checkout@v3
@@ -92,7 +92,7 @@ jobs:
9292
with:
9393
key: ${{matrix.target}}
9494
- run: sudo apt install rename
95-
- run: rustup toolchain install stable --profile minimal
95+
- run: rustup toolchain install stable --profile minimal --target ${{ matrix.target }}-unknown-linux-gnu
9696
- run: cargo install cargo-deb
9797
- run: mkdir -p release
9898
- run: make release-debian-x11

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
strategy:
4343
matrix:
44-
target: [x86_64, arm64]
44+
target: [x86_64, aarch64]
4545

4646
steps:
4747
- uses: actions/checkout@v4
@@ -51,7 +51,7 @@ jobs:
5151
key: ${{matrix.target}}
5252

5353
- run: sudo apt install rename
54-
- run: rustup toolchain install stable --profile minimal
54+
- run: rustup toolchain install stable --profile minimal --target ${{ matrix.target }}-unknown-linux-gnu
5555
- run: cargo install cargo-deb
5656
- run: mkdir -p release
5757
- run: make release-debian-x11

0 commit comments

Comments
 (0)