-
Notifications
You must be signed in to change notification settings - Fork 328
239 lines (207 loc) · 6.7 KB
/
release-wave-nightly.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
name: Release Wave Nightly
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # Schedule at midnight.
env:
TAG: "nightly"
# Cancel a currently running workflow.
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
# TODO: Use composite action to make the configuration more DRY.
jobs:
check-last-commit:
name: Check Last Commit
runs-on: ubuntu-20.04
outputs:
yesterday-commit-count: ${{ steps.get-new-commits.outputs.YESTERDAY_COMMIT_COUNT }}
nightly-dev-version: ${{ steps.get-dev-version.outputs.NIGHTLY_DEV_VERSION }}
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GIT_TOKEN }}
- id: get-new-commits
run: echo "YESTERDAY_COMMIT_COUNT=$(git log --oneline --since '24 hours ago' | wc -l)" >> $GITHUB_OUTPUT
- id: get-dev-version
run: echo "NIGHTLY_DEV_VERSION=$(awk -F"'" '/__version__/ {split($2,a,"."); a[2]++; print a[1] "." a[2] ".0.dev0"}' py/h2o_wave/h2o_wave/version.py)" >> $GITHUB_OUTPUT
test-linux:
name: Test Linux
needs: check-last-commit
if: needs.check-last-commit.outputs.yesterday-commit-count > 0
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
py: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GIT_TOKEN }}
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- uses: actions/setup-go@v4
with:
go-version: "1.22"
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- name: Setup
run: |
make setup-ui build-ui
make setup-py-tests
make setup-vsc
make setup-e2e
make build-server
env:
NODE_OPTIONS: "--max-old-space-size=8192"
- name: Test
run: |
make test-e2e-ci
make test-py-ci
make test-vsc-ci
test-win:
name: Test Windows
needs: check-last-commit
if: needs.check-last-commit.outputs.yesterday-commit-count > 0
strategy:
matrix:
py: ["3.8", "3.9", "3.10", "3.11"]
runs-on: windows-2022
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GIT_TOKEN }}
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- uses: actions/setup-go@v4
with:
go-version: "1.22"
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- name: Setup
run: .\setup.ps1
shell: pwsh
env:
NODE_OPTIONS: "--max-old-space-size=8192"
- name: Test
run: .\test.ps1
shell: pwsh
test-macos:
name: Test MacOS
needs: check-last-commit
if: needs.check-last-commit.outputs.yesterday-commit-count > 0
strategy:
matrix:
py: ["3.8", "3.9", "3.10", "3.11"]
runs-on: macos-12
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GIT_TOKEN }}
- name: Install docker
run: |
brew install qemu
brew install docker
colima start
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- uses: actions/setup-go@v4
with:
go-version: "1.22"
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- name: Setup
run: |
make setup-ui build-ui
make setup-py-tests
make setup-vsc
make setup-e2e
make build-server
env:
NODE_OPTIONS: "--max-old-space-size=8192"
- name: Test
run: |
make test-e2e-macos-ci
make test-py-ci
make test-vsc-ci
env:
KC_SLEEP: 45
release:
needs: [test-linux, test-win, test-macos, check-last-commit]
name: Release Wave Nightly
runs-on: ubuntu-20.04
steps:
- name: Set ENV vars
run: |
echo "VERSION=${{ needs.check-last-commit.outputs.nightly-dev-version }}" >> $GITHUB_ENV
- uses: actions/checkout@v2
with:
token: ${{ secrets.GIT_TOKEN }}
- uses: actions/setup-go@v4
with:
go-version: "1.22"
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- name: Setup
run: make setup
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
working-directory: ./r
# These unit tests are not OS-dependent, so no need to run them in the dedicated Test jobs.
- name: Unit test
run: |
make test-ui-ci
make test-intellij-ci
- name: Build Release
run: make release-nightly
env:
NODE_OPTIONS: "--max-old-space-size=8192"
- name: Update tag
run: git tag -f ${{ env.TAG }} && git push -f --tags
- uses: actions/github-script@v5
with:
github-token: ${{ secrets.GIT_TOKEN }}
script: |
const tag = "${{ env.TAG }}";
const { data: releases } = await github.rest.repos.listReleases({
owner: context.repo.owner,
repo: context.repo.repo
});
const release = releases.find(r => r.tag_name === tag);
if (release) {
await github.rest.repos.deleteRelease({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: release.id
});
console.log(`Deleted release ${tag}`);
} else {
console.log(`Release ${tag} not found`);
}
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
build/wave-${{ env.VERSION }}-darwin-amd64.tar.gz
build/wave-${{ env.VERSION }}-darwin-arm64.tar.gz
build/wave-${{ env.VERSION }}-linux-amd64.tar.gz
build/wave-${{ env.VERSION }}-windows-amd64.tar.gz
py/h2o_wave/dist/h2o_wave-${{ env.VERSION }}-py3-none-macosx_10_9_x86_64.whl
py/h2o_wave/dist/h2o_wave-${{ env.VERSION }}-py3-none-macosx_11_0_arm64.whl
py/h2o_wave/dist/h2o_wave-${{ env.VERSION }}-py3-none-macosx_12_0_arm64.whl
py/h2o_wave/dist/h2o_wave-${{ env.VERSION }}-py3-none-manylinux1_x86_64.whl
py/h2o_wave/dist/h2o_wave-${{ env.VERSION }}-py3-none-win_amd64.whl
py/h2o_wave/dist/h2o_wave-${{ env.VERSION }}-py3-none-any.whl
r/build/h2owave_nightly_R.tar.gz
tag_name: ${{ env.TAG }}
prerelease: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}