Skip to content

Commit bfdcf04

Browse files
author
fri
committed
Added ARM64 build target
1 parent f1e0d62 commit bfdcf04

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
# target: [x86_64-unknown-linux-musl, aarch64-unknown-linux-musl]
11-
target: [x86_64-unknown-linux-musl]
10+
target: [x86_64-unknown-linux-musl, aarch64-unknown-linux-musl]
1211
include:
1312
- target: x86_64-unknown-linux-musl
1413
platform: linux/amd64
14+
simple_target: Linux-x86_64
1515
runner: ubuntu-latest
16-
# - target: aarch64-unknown-linux-musl
17-
# platform: linux/arm64
18-
# runner: ubuntu-latest
16+
- target: aarch64-unknown-linux-musl
17+
platform: linux/arm64
18+
simple_target: Linux-arm64
19+
runner: ubuntu-24.04-arm
1920
runs-on: ${{ matrix.runner }}
2021
steps:
2122
- uses: actions/checkout@v4
@@ -43,10 +44,10 @@ jobs:
4344
cp README.md fcd/share/doc/fcd/
4445
cp CHANGELOG.md fcd/share/doc/fcd/
4546
cp LICENSE fcd/share/licenses/fcd/
46-
tar cvzf fcd-${{ matrix.target }}.tar.gz fcd/
47+
tar cvzf fcd-${{ matrix.simple_target }}.tar.gz fcd/
4748
- name: Upload
4849
uses: actions/upload-artifact@v4
4950
with:
50-
name: fcd-${{ matrix.target }}
51-
path: fcd-${{ matrix.target }}.tar.gz
51+
name: fcd-${{ matrix.simple_target }}
52+
path: fcd-${{ matrix.simple_target }}.tar.gz
5253
if-no-files-found: error

0 commit comments

Comments
 (0)