-
Notifications
You must be signed in to change notification settings - Fork 2
234 lines (209 loc) · 8.46 KB
/
build-installers.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
name: 📦🚀 Build & Release
on:
push:
tags:
- '**'
pull_request:
branches:
- '**'
concurrency:
# SHA is added to the end if on `main` to let all main workflows run
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == 'refs/heads/main' && github.sha || '' }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
name: Build Installer ${{ matrix.os.emoji }} ${{ matrix.os.name }} ${{ matrix.arch.name }}
runs-on: ${{ matrix.os.runs-on[matrix.arch.matrix] }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
configuration:
- token-driver-artifact-ref: 1.0.3
python-version: [3.9]
os:
# TODO: use old versions for improved compatibility?
- name: Linux
matrix: linux
emoji: 🐧
runs-on:
arm: [Linux, ARM64]
intel: [ubuntu-latest]
electron-builder-options: --linux
electron-builder-unpacked: linux-unpacked
token-driver-artifact:
arm: climate-token-client-chia-linux-arm64
intel: climate-token-client-chia-linux-amd64
executable-extension: ''
build-result-pattern: '"climate-wallet"*".deb"'
artifact-name: linux
- name: macOS
matrix: macos
emoji: 🍎
runs-on:
arm: [macOS, ARM64]
intel: [macos-latest]
electron-builder-options: --macos
electron-builder-unpacked: mac
token-driver-artifact:
arm: climate-token-client-chia-macos-arm64
intel: climate-token-client-chia-macos-amd64
executable-extension: ''
build-result-pattern: '"Climate Wallet-"*".dmg"'
artifact-name: macos
- name: Windows
matrix: windows
emoji: 🪟
runs-on:
intel: [windows-latest]
electron-builder-options: --windows
electron-builder-unpacked: win-unpacked
token-driver-artifact:
intel: climate-token-client-chia-windows-amd64
executable-extension: '.exe'
build-result-pattern: '"Climate Wallet Setup "*".exe"'
artifact-name: windows
arch:
- name: ARM
matrix: arm
artifact-name: arm64
electron-builder-options: --arm64
- name: Intel
matrix: intel
artifact-name: amd64
electron-builder-options: --x64
exclude:
- os:
matrix: windows
arch:
matrix: arm
steps:
- name: Clean workspace
uses: Chia-Network/actions/clean-workspace@main
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node 16.x
uses: actions/setup-node@v3
with:
node-version: '16'
- name: install dmg-license
if: matrix.os.matrix == 'macos'
run: |
npm install dmg-license
- name: download token driver
env:
GH_TOKEN: ${{ secrets.GH_READ_REPOS }}
DESTINATION: extraResources/main${{ matrix.os.executable-extension }}
run: |
RUN_ID=$(gh run list --repo chia-network/climate-token-driver --branch ${{ matrix.configuration.token-driver-artifact-ref }} --limit 1 --json databaseId --jq '.[0].databaseId')
gh run download $RUN_ID --repo chia-network/climate-token-driver --name ${{ matrix.os.token-driver-artifact[matrix.arch.matrix] }} --dir downloaded-artifacts/
mkdir -p extraResources/
# expected to fail if there are multiple files
mv downloaded-artifacts/* "${DESTINATION}"
chmod a+x "${DESTINATION}"
ls -la extraResources/ || true
- name: prep
run: |
cp .env.example .env
# back to this once we have a lock: npm ci
npm install
- name: Import Apple installer signing certificate
if: matrix.os.matrix == 'macos'
uses: Apple-Actions/import-codesign-certs@v2
with:
p12-file-base64: ${{ secrets.APPLE_DEV_ID_APP }}
p12-password: ${{ secrets.APPLE_DEV_ID_APP_PASS }}
- name: Prepare for Linux ARM electron-builder
if: matrix.os.matrix == 'linux' && matrix.arch.matrix == 'arm'
run: |
# TODO: make this an action?
# https://github.com/Chia-Network/chia-blockchain/blob/9b8cdd36daebf2efe8777c98e212e564f4cdd475/build_scripts/build_linux_deb-2-installer.sh#L72
sudo apt -y install ruby ruby-dev
sudo gem install public_suffix -v 4.0.7
sudo gem install fpm
echo "USE_SYSTEM_FPM=true" >> "${GITHUB_ENV}"
- name: Build electron app (Linux)
if: matrix.os.matrix == 'linux'
run: |
npm run build
npm run package-none -- ${{ matrix.os.electron-builder-options }} ${{ matrix.arch.electron-builder-options }}
- name: Build electron app (macOS)
if: matrix.os.matrix == 'macos'
env:
# macos
CSC_FOR_PULL_REQUEST: "true"
run: |
npm run build
npm run package-none -- ${{ matrix.os.electron-builder-options }} ${{ matrix.arch.electron-builder-options }}
- name: Build electron app (Windows)
if: matrix.os.matrix == 'windows'
env:
# windows
CSC_LINK: ${{ secrets.WIN_CODE_SIGN_CERT }}
CSC_KEY_PASSWORD: ${{ secrets.WIN_CODE_SIGN_PASSWORD }}
run: |
npm run build
npm run package-none -- ${{ matrix.os.electron-builder-options }} ${{ matrix.arch.electron-builder-options }}
- name: Copy to artifacts/
run: |
ls -la dist || true
mkdir -p artifacts/
cp -v dist/${{ matrix.os.build-result-pattern }} artifacts/
- name: Notarize
if: matrix.os.matrix == 'macos'
run: |
DMG_FILE=$(find ${{ github.workspace }}/artifacts/ -type f -name '*.dmg')
npm install -g notarize-cli
notarize-cli \
--file="$DMG_FILE" \
--bundle-id net.chia.climate-wallet \
--username "${{ secrets.APPLE_NOTARIZE_USERNAME }}" \
--password "${{ secrets.APPLE_NOTARIZE_PASSWORD }}"
- name: Upload Installer to artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os.artifact-name }}-${{ matrix.arch.artifact-name}}-installer
path: 'artifacts/*'
# We want to delete this no matter what happened in the previous steps (failures, success, etc)
- name: Delete signing keychain
if: always()
run:
security delete-keychain signing_temp.keychain || true
release:
runs-on: ubuntu-latest
needs:
- build
steps:
- name: Download all artifacts
uses: actions/download-artifact@v3
with:
path: installers
- name: Report installers
run: |
ls -lda installers/* || true
echo ====
ls -lda installers/*/* || true
- name: Release
uses: softprops/[email protected]
if: startsWith(github.ref, 'refs/tags/')
with:
files: installers/*/*
fail_on_unmatched_files: true
target_commitish: ${{ github.sha }}
- name: Get repo name
id: repo-name
run: |
echo "REPO_NAME=$(echo "$GITHUB_REPOSITORY" | cut -d "/" -f 2)" >>$GITHUB_OUTPUT
- name: Get tag name
id: tag-name
run: |
echo "TAGNAME=$(echo $GITHUB_REF | cut -d / -f 3)" >>$GITHUB_OUTPUT
- name: Trigger apt repo update
run: |
curl -s -XPOST -H "Authorization: Bearer ${{ secrets.GLUE_ACCESS_TOKEN }}" --data '{"climate_tokenization_repo":"${{ steps.repo-name.outputs.REPO_NAME }}","application_name":"[\"climate-wallet\"]","release_version":"${{ steps.tag-name.outputs.TAGNAME }}","add_debian_version":"false","arm64":"available"}' ${{ secrets.GLUE_API_URL }}/api/v1/climate-tokenization/${{ github.sha }}/start
curl -s -XPOST -H "Authorization: Bearer ${{ secrets.GLUE_ACCESS_TOKEN }}" --data '{"climate_tokenization_repo":"${{ steps.repo-name.outputs.REPO_NAME }}","application_name":"[\"climate-wallet\"]","release_version":"${{ steps.tag-name.outputs.TAGNAME }}","add_debian_version":"false","arm64":"available"}' ${{ secrets.GLUE_API_URL }}/api/v1/climate-tokenization/${{ github.sha }}/success/deploy