-
Notifications
You must be signed in to change notification settings - Fork 217
220 lines (189 loc) · 6.51 KB
/
snap.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
name: Snap
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
merge_group:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
# renovate: datasource=go depName=github.com/goreleaser/goreleaser
GORELEASER_VERSION: v1.26.2
# renovate: datasource=npm depName=pnpm versioning=npm
PNPM_VERSION: '8.15.9'
permissions:
contents: write
jobs:
skip-check:
name: Skip check
continue-on-error: true
runs-on: ubuntu-latest
timeout-minutes: 10
outputs:
should_skip: ${{ steps.skip-check.outputs.should_skip }}
permissions:
actions: write
contents: read
steps:
- id: skip-check
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf # v5.3.1
with:
do_not_skip: '["schedule", "workflow_dispatch"]'
paths: |-
[
"**.go",
".github/workflows/snap.yml",
".go-version",
".node-version",
"cmd/**",
"gen/**",
"go.mod",
"go.sum",
"pkg/**",
"ui/**"
]
skip_after_successful_duplicate: false
build:
name: Build Snap (goreleaser)
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
timeout-minutes: 45
permissions:
contents: read
env:
DOCKER_CLI_EXPERIMENTAL: "enabled"
steps:
- name: Remove unnecessary files
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: .go-version
check-latest: true
cache: true
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
with:
version: ${{ env.PNPM_VERSION }}
- name: Set up Node.js
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
node-version-file: .node-version
cache: 'pnpm'
cache-dependency-path: ui/pnpm-lock.yaml
- name: Set up Snapcraft
run: |
sudo snap install snapcraft --channel=7.x/stable --classic
# See https://github.com/goreleaser/goreleaser/issues/1715
mkdir -p "$HOME/.cache/snapcraft/download"
mkdir -p "$HOME/.cache/snapcraft/stage-packages"
- name: Set up environment
run: |
./env.sh
- name: Validate
uses: goreleaser/goreleaser-action@5fdedb94abba051217030cc86d4523cf3f02243d # v4.6.0
with:
distribution: goreleaser
version: ${{ env.GORELEASER_VERSION }}
args: check
- name: Set Tag
run: |
echo "goreleaser_current_tag=`git describe --match 'v*' --tags`" >> $GITHUB_ENV
- name: Dry Run
uses: goreleaser/goreleaser-action@5fdedb94abba051217030cc86d4523cf3f02243d # v4.6.0
with:
distribution: goreleaser
version: ${{ env.GORELEASER_VERSION }}
args: release --clean --skip-validate --skip-publish --timeout=60m
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GORELEASER_CURRENT_TAG: "${{ env.goreleaser_current_tag }}"
- name: Archive generated artifacts
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3.2.1
with:
name: parca-dist-release
if-no-files-found: error
path: |
dist/*.snap
test:
name: Test Snap
needs: build
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
with:
name: parca-dist-release
path: dist
- name: Install snapcraft
run: |
sudo snap install snapcraft --classic --channel=7.x/stable
- name: Install snap & invoke parca
run: |
sudo snap install --dangerous dist/parca*_linux_amd64.snap
sudo snap set parca log-level=debug
parca --version
- name: Start Parca - default config
run: |
sudo snap start parca
# Set some options to allow retries while Parca comes back up
CURL_OPTS=(--max-time 20 --retry 5 --retry-delay 3 --retry-connrefused)
curl ${CURL_OPTS[@]} http://localhost:7070/
curl ${CURL_OPTS[@]} http://localhost:7070/metrics
- name: Configure snap - enable-persistence
run: |
sudo snap set parca enable-persistence=true
sudo snap restart parca
# Set some options to allow retries while Parca comes back up
CURL_OPTS=(--max-time 20 --retry 5 --retry-delay 3 --retry-connrefused)
curl ${CURL_OPTS[@]} http://localhost:7070/
curl ${CURL_OPTS[@]} http://localhost:7070/metrics
- name: Configure snap - http-address
run: |
sudo snap set parca http-address=":8080"
sudo snap restart parca
# Set some options to allow retries while Parca comes back up
CURL_OPTS=(--max-time 20 --retry 5 --retry-delay 3 --retry-connrefused)
curl ${CURL_OPTS[@]} http://localhost:8080/
curl ${CURL_OPTS[@]} http://localhost:8080/metrics
# In case the above tests fail, dump the logs for inspection
- name: Dump snap service logs
if: failure()
run: |
sudo snap logs parca -n=all
release-edge:
name: Release Snap (latest/edge)
needs: test
if: ${{ github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
with:
name: parca-dist-release
path: dist
- name: Install snapcraft
run: |
sudo snap install snapcraft --classic --channel=7.x/stable
- name: Release to latest/edge
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
run: |
snapcraft upload dist/*_amd64.snap --release edge
snapcraft upload dist/*_arm64.snap --release edge