-
Notifications
You must be signed in to change notification settings - Fork 13
250 lines (215 loc) · 8.65 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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# This file was automatically generated by sbt-github-actions using the
# githubWorkflowGenerate task. You should add and commit this file to
# your git repository. It goes without saying that you shouldn't edit
# this file by hand! Instead, if you wish to make changes, you should
# change your sbt build configuration to revise the workflow description
# to meet your needs, then regenerate this file.
name: Continuous Integration
on:
pull_request:
branches: [master, main, backport/v*]
types: [opened, reopened, synchronize, ready_for_review]
push:
branches: [master, main, backport/v*]
env:
SBT: sbt
REPO_SLUG: ${{ github.repository }}
ENCRYPTION_PASSWORD: ${{ secrets.ENCRYPTION_PASSWORD }}
GITHUB_ACTOR: precog-bot
GITHUB_TOKEN: ${{ secrets.PRECOG_GITHUB_TOKEN }}
jobs:
build:
name: Build and Test
if: '!(github.event_name == ''pull_request'' && github.event.pull_request.draft) && !(github.event_name == ''push'' && (github.ref == ''refs/heads/main'' || github.ref == ''refs/heads/master'') && !startsWith(github.event.head_commit.message, ''Version release''))'
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.11]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Java (temurin@17)
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: sbt
- name: Common sbt setup
if: env.ENCRYPTION_PASSWORD != null
run: $SBT '++ ${{ matrix.scala }}' transferCommonResources
- name: Check that workflows are up to date
run: $SBT '++ ${{ matrix.scala }}' githubWorkflowCheck
- run: $SBT '++ ${{ matrix.scala }}' ci
- name: Compress target directories
run: tar cf targets.tar target core/target project/target
- name: Upload target directories
uses: actions/upload-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }}
path: targets.tar
publish:
name: Publish Artifacts
needs: [build]
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/backport/v') || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') && (startsWith(github.event.head_commit.message, 'Version release'))
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.11]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Java (temurin@17)
if: matrix.java == 'temurin@17'
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: sbt
- name: Download target directories (2.13.11)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-2.13.11-${{ matrix.java }}
- name: Inflate target directories (2.13.11)
run: |
tar xf targets.tar
rm targets.tar
- name: Common sbt setup
run: $SBT transferCommonResources transferPublishAndTagResources
- run: ./scripts/commonSetup
- name: Publish artifacts and create tag
run: ./scripts/publishAndTag ${{ github.repository }}
- run: $SBT dependencyUpdates
auto-merge:
name: Auto Merge
needs: [build]
if: 'github.event_name == ''pull_request'' && contains(github.head_ref, ''version-bump'') && contains(github.event.pull_request.labels.*.name, ''version: revision'')'
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.10]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
- name: Merge
id: merge
uses: actions/github-script@v6
with:
script: |
github.rest.pulls.merge({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: ${{ github.event.pull_request.number }},
});
github-token: ${{ secrets.PRECOG_GITHUB_TOKEN }}
check-labels:
name: Check Labels
if: github.event_name == 'pull_request' && !github.event.pull_request.draft
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.10]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
- name: Check PR labels
uses: docker://agilepathway/pull-request-label-checker:v1.4.30
with:
one_of: 'version: breaking,version: feature,version: revision,version: release'
none_of: ':stop_sign:'
repo_token: ${{ env.GITHUB_TOKEN }}
next-version:
name: Next version
if: github.event_name == 'push' && !startsWith(github.event.head_commit.message, 'Version release')
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.10]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (fast)
uses: actions/checkout@v3
with:
token: ${{ secrets.PRECOG_GITHUB_TOKEN }}
- name: Get current version
id: current_version
run: echo "CURRENT_VERSION=$(cat version.sbt | awk '{ gsub(/"/, "", $5); print $5 }')" >> $GITHUB_OUTPUT
- name: Compute next version
id: compute_next_version
uses: actions/github-script@v6
with:
script: |
const currentVersion = '${{steps.current_version.outputs.CURRENT_VERSION}}'
const parsedVersion = currentVersion.split(".")
var major = Number(parsedVersion[0])
var minor = Number(parsedVersion[1])
var patch = Number(parsedVersion[2])
const prResponse = await github.rest.repos.listPullRequestsAssociatedWithCommit({
owner: context.repo.owner,
repo: context.repo.repo,
commit_sha: context.sha
})
const prs = prResponse.data
if (prs === undefined) {
throw new Error("Could not fetch PRs for commit: status " + prs.status)
} else if (prs.length > 1) {
throw new Error("Cannot determine version increment required as there is more than one PR associated with the commit: " + context.sha)
} else if (prs.length === 0) {
throw new Error("Cannot determine version increment required as there are no PRs associated with the commit: " + context.sha)
}
const pr = prs[0]
for (const label of pr.labels) {
if (label.name === 'version: revision') {
patch = patch + 1
break
} else if (label.name === 'version: feature') {
patch = 0
minor = minor + 1
break
} else if (label.name === 'version: breaking') {
major = major + 1
minor = 0
patch = 0
break
} else if (label.name === 'version: release') {
major = major + 1
minor = 0
patch = 0
break
}
}
const nextVersion = major + '.' + minor + '.' + patch
if (nextVersion === currentVersion) {
throw new Error("Could not detect the version label on PR " + pr.number + " (obtained via association to commit " + context.sha + ")")
}
console.log("Setting the next version to " + nextVersion)
var body = ""
if (pr.body === undefined || pr.body === null || pr.body === "") {
body = ""
} else {
body = "\n" + pr.body.replaceAll("\r\n", "\n")
}
// set outputs for
const result = {
nextVersion: nextVersion,
commitMessage: "Version release: " + nextVersion + "\n\n" + pr.title + body
}
return result
- name: Modify version
id: modify_version
run: 'echo ''ThisBuild / version := "${{fromJson(steps.compute_next_version.outputs.result).nextVersion}}"'' > version.sbt'
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: ${{fromJson(steps.compute_next_version.outputs.result).commitMessage}}
commit_user_name: precog-bot
commit_user_email: bot@precog.com