-
Notifications
You must be signed in to change notification settings - Fork 26
373 lines (321 loc) · 12.4 KB
/
build_and_deploy.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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
---
name: Build And Deploy
on: [push]
jobs:
dagger_build:
name: Dagger Build and Test
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- name: Set keys
run: |
echo "${{secrets.QUILL_SIGN_P12}}" | base64 -d > ./cert.p12
echo "${{secrets.QUILL_NOTORY_KEY}}" > ./key.p8
echo "QUILL_SIGN_PASSWORD=${{secrets.QUILL_SIGN_PASSWORD}}" >> $GITHUB_ENV
echo "GITHUB_TOKEN=${{secrets.GH_TOKEN}}" >> $GITHUB_ENV
- name: All
uses: dagger/dagger-for-github@v5
with:
verb: call
module: ./.dagger
args: all --output=./output --src=. --github-token=GITHUB_TOKEN --notorize-cert=./cert.p12 --notorize-cert-password=QUILL_SIGN_PASSWORD --notorize-key=./key.p8 --notorize-id=${{secrets.QUILL_NOTARY_KEY_ID}} --notorize-issuer=${{secrets.QUILL_NOTARY_ISSUER}}
version: "0.9.9"
cloud-token: ${{ secrets.DAGGER_TOKEN }}
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: archives
path: |
./output
- name: Send status to Discord
uses: sarisia/actions-status-discord@v1
if: always()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
tile: ${{ github.job_id }}
description: "Build application"
functional_test_docker:
name: Test Docker
runs-on: ubuntu-latest
needs: dagger_build
strategy:
max-parallel: 2
fail-fast: false
matrix:
folder: [
'./examples/container',
'./examples/build',
'./examples/docs',
'./examples/nomad',
'./examples/single_k3s_cluster',
'./examples/multiple_k3s_clusters',
'./examples/exec',
'./examples/certificates',
'./examples/terraform',
'./examples/registries',
]
steps:
- name: Download-Binaries
uses: actions/download-artifact@v2
with:
name: archives
path: ./build_artifacts
- name: Install binary executable
run: |
cp $(find ./build_artifacts -name "jumppad_*_linux_x86_64.tar.gz" -type f) ./build_artifacts/jumppad.tar.gz
sudo tar -xzf ./build_artifacts/jumppad.tar.gz
sudo mv ./jumppad /usr/local/bin/jumppad
sudo chmod +x /usr/local/bin/jumppad
- uses: actions/checkout@v2
- name: Run tests
run: |
jumppad check --non-interactive
jumppad purge --non-interactive
jumppad test --non-interactive ${{matrix.folder}}
- name: Send status to Discord
uses: sarisia/actions-status-discord@v1
if: always()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
tile: ${{ github.job_id }}
description: "Functional tests for docker: ${{matrix.folder}}"
functional_test_podman:
name: Test Podman
runs-on: ubuntu-latest
needs: dagger_build
strategy:
max-parallel: 2
fail-fast: false
matrix:
folder: [
'./examples/container',
'./examples/build',
'./examples/docs',
'./examples/nomad',
'./examples/single_k3s_cluster',
'./examples/multiple_k3s_clusters',
'./examples/exec',
]
steps:
- name: Download-Binaries
uses: actions/download-artifact@v2
with:
name: archives
path: ./build_artifacts
- name: Install binary executable
run: |
cp $(find ./build_artifacts -name "jumppad_*_linux_x86_64.tar.gz" -type f) ./build_artifacts/jumppad.tar.gz
sudo tar -xzf ./build_artifacts/jumppad.tar.gz
sudo mv ./jumppad /usr/local/bin/jumppad
sudo chmod +x /usr/local/bin/jumppad
- uses: actions/checkout@v2
- name: Install dependencies for Podman tests
run: |
sudo mkdir -p /etc/apt/keyrings
# Debian Testing/Bookworm
curl -fsSL https://download.opensuse.org/repositories/devel:kubic:libcontainers:unstable/Debian_Testing/Release.key \
| gpg --dearmor \
| sudo tee /etc/apt/keyrings/devel_kubic_libcontainers_unstable.gpg > /dev/null
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/devel_kubic_libcontainers_unstable.gpg]\
https://download.opensuse.org/repositories/devel:kubic:libcontainers:unstable/Debian_Testing/ /" \
| sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list > /dev/null
# Debian Unstable/Sid
curl -fsSL https://download.opensuse.org/repositories/devel:kubic:libcontainers:unstable/Debian_Unstable/Release.key \
| gpg --dearmor \
| sudo tee /etc/apt/keyrings/devel_kubic_libcontainers_unstable.gpg > /dev/null
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/devel_kubic_libcontainers_unstable.gpg]\
https://download.opensuse.org/repositories/devel:kubic:libcontainers:unstable/Debian_Unstable/ /" \
| sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list > /dev/null
# Install Podman
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get -y install podman
# Start the Podman sock
sudo nohup podman system service -t 0 > ./podman.log &
sleep 10
sudo chmod +x /run/podman
sudo chmod 777 /run/podman/podman.sock
- name: Run tests
run: |
jumppad check --non-interactive
jumppad purge --non-interactive
jumppad test --non-interactive ${{matrix.folder}}
env:
DOCKER_HOST: "unix:///run/podman/podman.sock"
- name: Send status to Discord
uses: sarisia/actions-status-discord@v1
if: always()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
tile: ${{ github.job_id }}
description: "Functional tests for ${{matrix.folder}}"
github_release:
name: Create GitHub Release
if: ${{ github.ref == 'refs/heads/main' }}
needs:
- functional_test_docker
- functional_test_podman
environment:
name: release
runs-on: ubuntu-latest
steps:
- name: Set keys
run: |
echo "GITHUB_TOKEN=${{secrets.GH_TOKEN}}" >> $GITHUB_ENV
- uses: actions/checkout@v2
- name: Download-Binaries
uses: actions/download-artifact@v2
with:
name: archives
path: ./build_artifacts
- name: Release
uses: dagger/dagger-for-github@v5
with:
verb: call
module: ./.dagger
args: release --src=. --github-token=GITHUB_TOKEN --archives=./build_artifacts --output=./version.txt
version: "0.9.9"
cloud-token: ${{ secrets.DAGGER_TOKEN }}
- name: Set output
id: setoutput
run: |
echo "version=$(cat ./version.txt)" >> $GITHUB_OUTPUT
outputs:
version: ${{ steps.setoutput.outputs.version }}
brew:
name: Release to HomeBrew
needs:
- github_release
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
repository: 'jumppad-labs/homebrew-repo'
token: '${{ secrets.GH_TOKEN }}'
- name: Configure Git
run: |
git config user.email "[email protected]"
git config user.name "Jumppad Bot"
git pull origin main
- name: Generate HomeBrew config
run: |
export VERSION=${{ needs.github_release.outputs.version }}
export DARWIN_ARM64_SHA=$(sha256sum ./releases/jumppad${{ needs.github_release.outputs.version }}_darwin_arm64.zip | cut -d " " -f 1)
export DARWIN_x86_SHA=$(sha256sum ./releases/jumppad_${{ needs.github_release.outputs.version }}_darwin_x86_64.zip | cut -d " " -f 1)
export LINUX_ARM64_SHA=$(sha256sum ./releases/jumppad_${{ needs.github_release.outputs.version }}_linux_arm64.tar.gz | cut -d " " -f 1)
export LINUX_x86_SHA=$(sha256sum ./releases/jumppad_${{ needs.github_release.outputs.version }}_linux_x86_64.tar.gz | cut -d " " -f 1)
cat <<- EOF > ./jumppad.rb
# typed: false
# frozen_string_literal: true
class Jumppad < Formula
desc ""
homepage "https://jumppad.dev/"
version "${VERSION}"
if OS.mac? && Hardware::CPU.intel?
url "https://github.com/jumppad-labs/jumppad/releases/download/${VERSION}/jumppad_${VERSION}_darwin_x86_64.zip"
sha256 "${DARWIN_x86_SHA}"
end
if OS.mac? && Hardware::CPU.arm?
url "https://github.com/jumppad-labs/jumppad/releases/download/${VERSION}/jumppad_${VERSION}_darwin_arm64.zip"
sha256 "${DARWIN_ARM64_SHA}"
end
if OS.linux? && Hardware::CPU.intel?
url "https://github.com/jumppad-labs/jumppad/releases/download/${VERSION}/jumppad_${VERSION}_linux_x86_64.tar.gz"
sha256 "${LINUX_x86_SHA}"
end
if OS.linux? && Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/jumppad-labs/jumppad/releases/download/${VERSION}/jumppad_${VERSION}_linux_arm64.tar.gz"
sha256 "${LINUX_ARM64_SHA}"
end
def install
bin.install "jumppad"
end
end
EOF
cat ./jumppad.rb
rm -rf ./dist
- name: Push update
run: |
git add .
git commit -m "Update version to ${{ needs.github_release.outputs.version }}"
git push
winget:
name: Publish to WinGet
needs:
- github_release
runs-on: windows-latest
steps:
- uses: jumppad-labs/[email protected]
with:
publish-type: "Update"
user: "jumppad"
package: "jumppad"
version: ${{ needs.github_release.outputs.version }}
url: "https://github.com/jumppad-labs/jumppad/releases/download/${{ needs.github_release.outputs.version }}/jumppad_${{ needs.github_release.outputs.version }}_windows_x86_64.zip|x64"
token: '${{ secrets.GH_TOKEN }}'
- name: Send status to Discord
uses: sarisia/actions-status-discord@v1
if: always()
with:
tile: ${{ github.job_id }}
webhook: ${{ secrets.DISCORD_WEBHOOK }}
description: "Push new version ${{ needs.github_release.outputs.version }} to Winget"
apt:
name: Update fury.io Apt repository
needs:
- github_release
runs-on: ubuntu-latest
strategy:
matrix:
arch: ["x86_64.deb", "arm64.deb"]
steps:
- name: Download release
run: |
wget "https://github.com/jumppad-labs/jumppad/releases/download/${{ needs.github_release.outputs.version }}/jumppad_${{ needs.github_release.outputs.version }}_linux_${{ matrix.arch }}"
- name: Upload release
run: |
curl -F package=@jumppad_${{ needs.github_release.outputs.version }}_linux_${{ matrix.arch }} https://${{ secrets.FURY_JUMPPAD_TOKEN }}@push.fury.io/jumppad/
- name: Send status to Discord
uses: sarisia/actions-status-discord@v1
if: always()
with:
tile: ${{ github.job_id }}
webhook: ${{ secrets.DISCORD_WEBHOOK }}
description: "Push new version ${{ needs.github_release.outputs.version }} to Apt"
update_website:
name: Update Jumppad website with latest version
needs:
- github_release
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
repository: 'jumppad-labs/jumppad-labs.github.io'
token: '${{ secrets.GH_TOKEN }}'
- name: Configure Git
run: |
git config user.email "[email protected]"
git config user.name "Jumppad Bot"
- name: Write version
run: |
echo "${{ needs.github_release.outputs.version }}" > ./public/latest
- name: Push update
run: |
git add .
git commit -m "Update version to ${{ needs.github_release.outputs.version }}"
git push
- name: Send status to Discord
uses: sarisia/actions-status-discord@v1
if: always()
with:
tile: ${{ github.job_id }}
webhook: ${{ secrets.DISCORD_WEBHOOK }}
description: "Update website with latest version ${{ needs.github_release.outputs.version }}"