-
Notifications
You must be signed in to change notification settings - Fork 0
226 lines (218 loc) · 7.22 KB
/
ci.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
---
# See: /ci/README.md
#
#
# ```
# +-----------------------------+
# | 1. PRESUBMIT |
# +-----------------------------+
# |
# | All offline tests succeed.
# |
# | - bazel test //...
# v
# +-----------------------------+
# | 2. AUTHORIZATION CHECK |
# +-----------------------------+
# | The next step will not run
# | until one of the repo owners
# | approves the commits.
# |
# v
# +-----------------------------+
# | 3. SUBMIT |
# +-----------------------------+
# | Deploy actions that can
# | be rolled back performed.
# |
# | - Pulumi up
# v
# +-----------------------------+
# | 3a. ROLLBACK |
# +-----------------------------+
# | Upon failure of step 3,
# | checkout origin/main,
# | and re-perform SUBMIT.
# x
# +-----------------------------+
# | 4. POSTSUBMIT |
# +-----------------------------+
# | When (3) succeeds,
# |
# | Deploy actions that cannot
# | be rolled back performed.
# |
# | - Creating a GitHub release
# | - Uploading NPM packages
# v
# +-----------------------------+
# | 5. MERGE |
# +-----------------------------+
#
# ```
name: CI
on: # yamllint disable-line rule:truthy
merge_group:
pull_request:
branches:
# presubmit
- main
push:
branches:
- main
# manual triggering
workflow_dispatch:
jobs:
Presubmit:
# this should stop presubmits being run even when there
# is a successor commit in pull request.
concurrency:
group: concurrency-ci-${{ github.head_ref }}
cancel-in-progress: true
# github's security settings mean that pull requests
# can only pull from the upstream 'main' cache.
#
# This means we need to run these tests so that
# PRs can be sped up by loading their cached results.
if: >
github.event_name == 'pull_request'
|| github.event_name == 'workflow_dispatch'
|| github.event_name == 'push'
# Performs all offline testing.
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
android: true
dotnet: true
haskell: true
large-packages: false
- name: Checkout code
uses: actions/checkout@v3
- name: Presubmit
run: |
./.github/workflows/bootstrap_bazel_remote_cache.sh
bazel run //ci:presubmit -- --skip-pulumi-deploy
env:
BAZEL_REMOTE_CACHE_URL: ${{ secrets.BAZEL_REMOTE_CACHE_URL }}
Staging:
# Pulumi doesn't like it when multiple deploys are attempted at once.
# This is also enforced at the pulumi layer, but i'm sure github actions
# would make me pay while that thread waits to acquire the lock.
concurrency: pulumi_staging
if: >
github.event_name == 'pull_request'
|| github.event_name == 'workflow_dispatch'
# Performs all offline testing.
needs: Presubmit
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
android: true
dotnet: true
haskell: true
docker-images: true
large-packages: false
swap-storage: true
# in order to determine if applying this patch would succeed
# *on the mainline branch*
# we have to set the Pulumi state to be the same.
- name: Checkout main branch
uses: actions/checkout@v3
with:
ref: main
- name: Pulumi up from origin/main to staging
# dirty used here so the state transition is main -> candidate
run: |
bazel run //ci:presubmit -- --skip-bazel-tests --dirty \
--dangerously-skip-pnpm-lockfile-validation --overwrite
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# https://github.com/pulumi/pulumi-github/issues/248
GITHUB_OWNER: zemn-me/monorepo
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_SECRET }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BAZEL_REMOTE_CACHE_URL: ${{ secrets.BAZEL_REMOTE_CACHE_URL }}
- name: Switch back to candidate branch
uses: actions/checkout@v3
- name: Deploy candidate branch to Staging
# we can run this dirty since the next run will --overwrite anyway
run: |
./.github/workflows/bootstrap_bazel_remote_cache.sh
bazel run //ci:presubmit -- \
--skip-bazel-tests \
--dangerously-skip-pnpm-lockfile-validation --dirty
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
# https://github.com/pulumi/pulumi-github/issues/248
GITHUB_OWNER: zemn-me/monorepo
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_SECRET }}
BAZEL_REMOTE_CACHE_URL: ${{ secrets.BAZEL_REMOTE_CACHE_URL }}
Submit:
concurrency: pulumi_production
if: github.event_name == 'push'
# Attempts to submit changes to production.
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
android: true
dotnet: true
haskell: true
docker-images: true
swap-storage: true
large-packages: false
- name: Checkout code
uses: actions/checkout@v3
- name: Submit
# Use npx to try to generate only
# bazel generated node_modules
run: |
./.github/workflows/bootstrap_bazel_remote_cache.sh
bazel run //ci:submit
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://github.com/pulumi/pulumi-github/issues/248
GITHUB_OWNER: zemn-me/monorepo
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_SECRET }}
BAZEL_REMOTE_CACHE_URL: ${{ secrets.BAZEL_REMOTE_CACHE_URL }}
Postsubmit:
runs-on: ubuntu-latest
if: github.event_name == 'push'
needs: Submit
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
android: true
dotnet: true
haskell: true
docker-images: true
large-packages: false
swap-storage: true
- name: Checkout code
uses: actions/checkout@v3
- name: Postsubmit
run: |
./.github/workflows/bootstrap_bazel_remote_cache.sh
bazel run //ci:postsubmit
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://github.com/pulumi/pulumi-github/issues/248
GITHUB_OWNER: zemn-me/monorepo
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_SECRET }}
BAZEL_REMOTE_CACHE_URL: ${{ secrets.BAZEL_REMOTE_CACHE_URL }}