-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (38 loc) · 1.09 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: build
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Install Cross binutils
run: |
sudo apt-get install -y gcc-aarch64-linux-gnu
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: |
for i in linux-amd64 linux-arm64; do
if [ "$i" = "linux-arm64" ]; then
buildenv="CC=aarch64-linux-gnu-gcc"
else
buildenv=""
fi
env $buildenv make ARCH=$i all
tar -cz --numeric-owner --owner root --group root -f tunaccount-$i-bin.tar.gz -C build-$i tunaccount
done
- name: Keep artifacts
uses: actions/upload-artifact@v2
with:
name: 'tunaccount-linux-arm64'
path: 'tunaccount-linux-arm64-bin.tar.gz'
- name: Keep artifacts
uses: actions/upload-artifact@v2
with:
name: 'tunaccount-linux-amd64'
path: 'tunaccount-linux-amd64-bin.tar.gz'