-
Notifications
You must be signed in to change notification settings - Fork 170
73 lines (62 loc) · 2.25 KB
/
build-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
name: Build Binaries
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
architecture: amd64
- os: macOS-latest
architecture: amd64
- os: self-hosted
architecture: arm64
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get latest tag
id: tag
run: echo "TAG=$(git describe --tags)" >> $GITHUB_ENV
- name: Install dependencies (Ubuntu or self-hosted)
if: runner.os == 'Linux'
run: sudo apt-get update -qq && sudo apt-get install -y upx-ucl build-essential cargo git golang libjemalloc-dev libjemalloc2 -y
- name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: brew install upx cargo-c jemalloc
- name: Set up Go
uses: actions/setup-go@v4.1.0
with:
go-version-file: go.mod
- name: Build Juno
run: |
make juno
upx build/juno
mv build/juno juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }}
- name: Generate Checksum
id: checksum
run: |
if [[ "${{ runner.os }}" == "macOS" ]]; then
shasum -a 256 juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }} > juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }}.sha256
else
sha256sum juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }} > juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }}.sha256
fi
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }}
path: |
juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }}
juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }}.sha256
- name: Cleanup
if: matrix.os == 'self-hosted'
run: |
rm juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }}
rm juno-${{ env.TAG }}-${{ runner.os }}-${{ matrix.architecture }}.sha256