Skip to content

Commit c7ce40f

Browse files
authored
chore(ci): build for aarch64 (#389)
Build and add to the released binaries for `aarch64-unknown-linux-gnu`, `aarch64-apple-darwin` and `aarch64-pc-windows-msvc`
1 parent d98f159 commit c7ce40f

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/release.yaml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,26 @@ jobs:
3232
needs: create-release
3333
strategy:
3434
matrix:
35-
os: [ubuntu-latest, macos-latest, windows-latest]
35+
include:
36+
- target: x86_64-unknown-linux-gnu
37+
os: ubuntu-latest
38+
- target: x86_64-apple-darwin
39+
os: macos-latest
40+
- target: x86_64-pc-windows-msvc
41+
os: windows-latest
42+
- target: aarch64-unknown-linux-gnu
43+
os: ubuntu-latest
44+
- target: aarch64-apple-darwin
45+
os: macos-latest
46+
- target: aarch64-pc-windows-msvc
47+
os: windows-latest
48+
3649
runs-on: ${{ matrix.os }}
3750
steps:
3851
- uses: actions/checkout@v3
3952
- uses: taiki-e/upload-rust-binary-action@v1
4053
with:
4154
bin: tokio-console
55+
target: ${{ matrix.target }}
4256
env:
4357
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)