-
-
Notifications
You must be signed in to change notification settings - Fork 55
230 lines (189 loc) · 7.13 KB
/
image.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
name: image
on:
pull_request:
types: [opened, synchronize, reopened, labeled]
push:
branches:
- master
- release/**
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build-setup:
name: Setup build metadata
runs-on: ubuntu-latest
env:
FULL_CI: "${{
github.event_name != 'pull_request'
|| contains(github.event.pull_request.labels.*.name, 'Trigger: Full-CI')
}}"
steps:
- id: set-outputs
run: |
echo "full_ci=$FULL_CI" >> $GITHUB_OUTPUT
if [[ "$FULL_CI" == "true" ]]; then
echo "Running full CI"
echo 'archs=["amd64", "arm64"]' >> $GITHUB_OUTPUT
else
echo "Skipping some CI steps"
echo 'archs=["amd64"]' >> $GITHUB_OUTPUT
fi
outputs:
archs: "${{ steps.set-outputs.outputs.archs }}"
full_ci: "${{ steps.set-outputs.outputs.full_ci }}"
build-image:
needs: build-setup
strategy:
matrix:
arch: ${{ fromJson(needs.build-setup.outputs.archs) }}
runs-on: |-
${{fromJson('{
"amd64": "ubuntu-20.04",
"arm64": "ubuntu-22.04-arm"
}')[matrix.arch] }}
env:
IMG_VERSIONED: ghcr.io/getsentry/symbolicator:${{ matrix.arch }}-${{ github.sha }}
NIGHTLY_IMG_CACHE: ghcr.io/getsentry/symbolicator:${{ matrix.arch }}-nightly
BUILDER_IMG_CACHE: ghcr.io/getsentry/symbolicator:${{ matrix.arch }}-builder
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Docker Login
run: docker login --username '${{ github.actor }}' --password '${{ secrets.GITHUB_TOKEN }}' ghcr.io
- name: build builder img
run: |
set -euxo pipefail
args=()
if docker pull -q "$BUILDER_IMG_CACHE"; then
args+=(--cache-from "$BUILDER_IMG_CACHE")
fi
docker buildx build \
"${args[@]}" \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--platform linux/${{ matrix.arch }} \
--tag "$BUILDER_IMG_CACHE" \
--target symbolicator-build \
.
- name: build nightly img
run: |
set -euxo pipefail
args=()
if docker pull -q "$NIGHTLY_IMG_CACHE"; then
args+=(--cache-from "$NIGHTLY_IMG_CACHE")
fi
docker buildx build \
"${args[@]}" \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--platform linux/${{ matrix.arch }} \
--tag "$NIGHTLY_IMG_CACHE" \
--tag "$IMG_VERSIONED" \
--cache-from "${BUILDER_IMG_CACHE}" \
--cache-from "${NIGHTLY_IMG_CACHE}" \
.
- name: Prepare Artifacts
if: "needs.build-setup.outputs.full_ci == 'true'"
run: |
mkdir -p "artifacts/${{ matrix.arch }}"
docker run --rm --entrypoint cat "${BUILDER_IMG_CACHE}" /opt/symbolicator-debug.zip > artifacts/symbolicator-debug.zip
docker run --rm --entrypoint cat "${BUILDER_IMG_CACHE}" /opt/symbolicator.src.zip > artifacts/symbolicator.src.zip
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
retention-days: 1
name: image-${{ matrix.arch }}
path: "./artifacts/*"
- name: push all images
if: "needs.build-setup.outputs.full_ci == 'true'"
run: |
docker push "$BUILDER_IMG_CACHE"
docker push "$NIGHTLY_IMG_CACHE"
docker push "$IMG_VERSIONED"
gocd-artifacts:
needs: [build-setup, build-image]
if: "needs.build-setup.outputs.full_ci == 'true'"
name: Upload gocd artifacts
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
env:
GHCR_IMAGE: ghcr.io/getsentry/symbolicator:amd64-${{ github.sha }}
steps:
- name: Google Auth
id: auth
uses: google-github-actions/auth@v2
with:
workload_identity_provider: projects/868781662168/locations/global/workloadIdentityPools/prod-github/providers/github-oidc-pool
service_account: [email protected]
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v2
with:
version: ">= 390.0.0"
- uses: actions/download-artifact@v4
with:
pattern: "image-amd64"
merge-multiple: true
- name: Upload gocd deployment assets
run: gsutil -m cp ./symbolicator*.zip "gs://dicd-team-devinfra-cd--symbolicator/difs/${{ github.sha }}/"
assemble:
needs: [build-setup, build-image]
if: "needs.build-setup.outputs.full_ci == 'true'"
name: Assemble for Github Container Registry
runs-on: ubuntu-20.04
env:
TARGET_IMAGE: ghcr.io/getsentry/symbolicator
steps:
- name: Docker Login
run: docker login --username '${{ github.actor }}' --password '${{ secrets.GITHUB_TOKEN }}' ghcr.io
- name: Assemble Sha Image
run: |
docker buildx imagetools create -t "${TARGET_IMAGE}:${{ github.sha }}" \
"${TARGET_IMAGE}:arm64-${{ github.sha }}" \
"${TARGET_IMAGE}:amd64-${{ github.sha }}"
- name: Assemble Latest Image
if: github.ref_name == 'master'
run: |
docker buildx imagetools create -t "${TARGET_IMAGE}:latest" \
"${TARGET_IMAGE}:arm64-${{ github.sha }}" \
"${TARGET_IMAGE}:amd64-${{ github.sha }}"
assemble-ar:
needs: [build-setup, build-image]
if: "needs.build-setup.outputs.full_ci == 'true'"
name: Assemble for Google Artifact Registry
runs-on: ubuntu-latest
# required for google auth
permissions:
contents: read
id-token: write
env:
GHCR_IMAGE: ghcr.io/getsentry/symbolicator
TARGET_IMAGE: us-central1-docker.pkg.dev/sentryio/symbolicator/image
steps:
- name: Google Auth
id: auth
uses: google-github-actions/auth@v2
with:
workload_identity_provider: projects/868781662168/locations/global/workloadIdentityPools/prod-github/providers/github-oidc-pool
service_account: [email protected]
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v2
with:
# https://github.com/google-github-actions/auth#authenticating-via-workload-identity-federation
# You must use the Cloud SDK version 390.0.0 or later to authenticate the bq and gsutil tools.
version: ">= 390.0.0"
- name: Configure Docker
run: |
gcloud auth configure-docker us-central1-docker.pkg.dev
- name: Assemble Sha Image
run: |
docker buildx imagetools create -t "${TARGET_IMAGE}:${{ github.sha }}" \
"${GHCR_IMAGE}:arm64-${{ github.sha }}" \
"${GHCR_IMAGE}:amd64-${{ github.sha }}"
- name: Assemble Latest Image
if: github.ref_name == 'master'
run: |
docker buildx imagetools create -t "${TARGET_IMAGE}:latest" \
"${GHCR_IMAGE}:arm64-${{ github.sha }}" \
"${GHCR_IMAGE}:amd64-${{ github.sha }}"