-
Notifications
You must be signed in to change notification settings - Fork 92
78 lines (74 loc) · 2.34 KB
/
build-pkg.yaml
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
name: build-pkg
on:
workflow_call:
inputs:
os:
type: string
required: true
arch:
type: string
required: true
output_arch:
type: string
required: true
version:
type: string
required: true
tag:
type: string
required: true
permissions:
# This is required for configure-aws-credentials to request an OIDC JWT ID token to access AWS resources later on.
# More info: https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect#adding-permissions-settings
id-token: write
# This is required for actions/checkout
contents: read
jobs:
build:
runs-on:
[
self-hosted,
release,
'${{ inputs.os }}',
'${{ inputs.arch }}',
'${{ inputs.version }}',
]
timeout-minutes: 60
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{ inputs.tag }}
fetch-depth: 0
persist-credentials: false
submodules: true
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: go.mod
cache: false
- name: Build for macOS ${{ inputs.version }} (${{ inputs.output_arch }})
run: |
brew install lz4 automake autoconf libtool yq llvm
git status
git clean -f -d
make clean
make download-licenses
make FINCH_OS_IMAGE_LOCATION_ROOT=/Applications/Finch
shell: zsh {0}
- name: configure aws credentials
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
with:
role-to-assume: ${{ secrets.ROLE }}
role-session-name: dependency-upload-session
aws-region: ${{ secrets.REGION }}
- id: final
name: generate pkg
run: |
./installer-builder/tools/release-installer.sh \
${{ inputs.output_arch }} \
${{ inputs.tag }} \
${{ secrets.INSTALLER_PRIVATE_BUCKET_NAME }} \
${{ secrets.EXECUTABLE_BUCKET }} \
${{ secrets.PKG_BUCKET }} \
${{ secrets.NOTARIZATION_ACCOUNT }} \
${{ secrets.NOTARIZATION_CREDENTIAL }}
shell: zsh {0}