File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,15 @@ jobs:
13
13
14
14
build :
15
15
runs-on : ubuntu-latest
16
+ strategy :
17
+ matrix :
18
+ arch : [x86_64, aarch64]
16
19
steps :
17
20
- uses : actions/checkout@v4
18
21
- name : Set up Alpine Linux for x86_64 (build arch)
19
22
uses : jirutka/setup-alpine@v1
20
23
with :
21
- arch : x86_64
24
+ arch : ${{ matrix.arch }}
22
25
id : alpine-root
23
26
packages : >
24
27
build-base
@@ -32,29 +35,29 @@ jobs:
32
35
go
33
36
sudo
34
37
35
- - name : Install LuaJit 2.1
38
+ - name : Install LuaJit 2.1 ${{ matrix.arch }}
36
39
run : |
37
40
git clone https://luajit.org/git/luajit-2.0.git \
38
41
&& cd luajit-2.0 \
39
42
&& git checkout v2.1 \
40
43
&& make CCOPT="-static -fPIC" BUILDMODE="static" && sudo make install
41
44
shell : alpine.sh {0}
42
45
43
- - name : Build
44
- run : CGO_ENABLED=1 GOOS=linux go build -a --ldflags '-linkmode external -extldflags "-static -s -w"' -o heplify .
46
+ - name : Build ${{ matrix.arch }}
47
+ run : CGO_ENABLED=1 GOOS=linux go build -a --ldflags '-linkmode external -extldflags "-static -s -w"' -o heplify-${{ matrix.arch }} .
45
48
shell : alpine.sh {0}
46
49
47
- - name : Try to run the binary
48
- run : ./heplify -h
50
+ - name : Try to run the binary ${{ matrix.arch }}
51
+ run : ./heplify-${{ matrix.arch }} -h
49
52
shell : alpine.sh {0}
50
53
51
- - name : Upload
54
+ - name : Upload ${{ matrix.arch }}
52
55
if : ${{ github.event_name != 'workflow_dispatch' }}
53
56
uses : skx/github-action-publish-binaries@master
54
57
env :
55
58
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
56
59
with :
57
- args : ' heplify'
60
+ args : ' heplify-${{ matrix.arch }} '
58
61
59
62
docker-push :
60
63
if : ${{ github.event_name != 'workflow_dispatch' }}
You can’t perform that action at this time.
0 commit comments