forked from ava-labs/avalanchego
-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (68 loc) · 2.18 KB
/
build-linux-binaries.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: build-linux-release
on:
push:
tags:
- '*'
jobs:
build-x86_64-binaries-tarball:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.17.1' # The Go version to download (if necessary) and use.
- run: go version
- name: Build the avalanchego binaries
run: ./scripts/build.sh
- name: Install aws cli
run: |
sudo apt update
sudo apt-get install awscli
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
shell: bash
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Create tgz package structure
run: ./.github/workflows/build-tgz-pkg.sh
env:
TAG: ${{ steps.get_version.outputs.VERSION }}
BUCKET: ${{ secrets.BUCKET }}
ARCH: "amd64"
RELEASE: "focal"
build-arm64-binaries-tarball:
runs-on: [self-hosted, linux, ARM64, bionic]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.17.1' # The Go version to download (if necessary) and use.
- run: go version
- name: Build the avalanchego binaries
run: ./scripts/build.sh
- name: Install aws cli
run: |
sudo apt update
sudo apt-get install awscli
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
shell: bash
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Create tgz package structure
run: ./.github/workflows/build-tgz-pkg.sh
env:
TAG: ${{ steps.get_version.outputs.VERSION }}
BUCKET: ${{ secrets.BUCKET }}
ARCH: "arm64"
RELEASE: "focal"