-
Notifications
You must be signed in to change notification settings - Fork 320
406 lines (355 loc) · 12.4 KB
/
sdk.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
# This workflow runs SDK related jobs for OpenMLDB
name: SDK
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- "demo/**"
- "docker/**"
- "image/**"
- "release/**"
- "tools/**"
- "*.md"
- 'benchmark/**'
tags:
- v*
pull_request:
paths-ignore:
- "docs/**"
- "demo/**"
- "docker/**"
- "image/**"
- "release/**"
- "tools/**"
- "*.md"
- 'benchmark/**'
workflow_dispatch:
env:
GIT_SUBMODULE_STRATEGY: recursive
NPROC: 2 # default Parallel build number for GitHub's Linux runner
EXAMPLES_ENABLE: OFF # turn off hybridse's example code
HYBRIDSE_TESTING_ENABLE: OFF # turn off hybridse's test code
jobs:
java-sdk:
runs-on: ubuntu-latest
container:
image: ghcr.io/4paradigm/hybridsql:latest
env:
SQL_JAVASDK_ENABLE: ON
OPENMLDB_BUILD_TARGET: "cp_native_so openmldb"
MAVEN_OPTS: -Duser.home=/github/home
SPARK_HOME: /tmp/spark/
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: "8"
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_TOKEN
gpg-passphrase: GPG_PASSPHRASE # env variable for GPG private key passphrase
- name: Import GPG key
id: import_gpg
if: github.event_name == 'push'
uses: crazy-max/ghaction-import-gpg@v4
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('java/**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: prepare release
if: github.event_name == 'push'
run: |
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
VERSION=${VERSION#v}
./java/prepare_release.sh "$VERSION"
- name: build jsdk
run: |
make build
- name: upload linux library
if: github.event_name == 'push'
uses: actions/upload-artifact@v2
with:
name: shared-library-${{ github.sha }}
path: |
java/openmldb-native/src/main/resources/libsql_jsdk.so
java/hybridse-native/src/main/resources/libhybridse_jsdk_core.so
- name: start services
run: |
sh steps/ut_zookeeper.sh start
sh steps/download_openmldb_spark.sh $SPARK_HOME
cd onebox && sh start_onebox.sh && sh start_onebox.sh standalone && cd - || exit
- name: run java modules smoke test
working-directory: java
run: |
./mvnw --batch-mode test
- name: upload java ut results
if: always()
uses: actions/upload-artifact@v2
with:
name: linux-ut-result-java-${{ github.sha }}
path: |
java/*/target/**/TEST-*.xml
- name: deploy
if: github.event_name == 'push'
working-directory: java
run: |
./mvnw --batch-mode deploy -DskipTests=true -Dscalatest.skip=true
env:
MAVEN_OPTS: -Duser.home=/github/home
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
- name: maven coverage
working-directory: java
run: |
./mvnw --batch-mode prepare-package
./mvnw --batch-mode scoverage:report
- name: upload maven coverage
uses: codecov/codecov-action@v3
with:
files: java/**/target/site/jacoco/jacoco.xml,java/**/target/scoverage.xml
name: coverage-java
fail_ci_if_error: true
verbose: true
- name: stop services
run: |
cd onebox && ./stop_all.sh && cd - || exit
sh steps/ut_zookeeper.sh stop
java-sdk-mac:
# mac job for java sdk. steps are almost same with job 'java-sdk'
# except mvn deploy won't target all modules, just hybridse-native & openmldb-native
# the job only run on tag push or manual workflow dispatch due to no test runs
runs-on: macos-latest
needs:
- java-sdk
if: github.event_name == 'push'
env:
SQL_JAVASDK_ENABLE: ON
OPENMLDB_BUILD_TARGET: "cp_native_so openmldb"
NPROC: 3
steps:
- uses: actions/checkout@v3
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('java/**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Cache thirdparty
uses: actions/cache@v3
with:
path: |
.deps/
thirdsrc
key: ${{ runner.os }}-thirdparty-${{ hashFiles('third-party/**/CMakeLists.txt', 'third-party/**/*.cmake', 'third-party/**/*.sh') }}
- name: prepare release
if: github.event_name == 'push'
run: |
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
VERSION=${VERSION#v}
VARIANT_TYPE=macos ./java/prepare_release.sh "$VERSION"
- uses: actions/setup-java@v3
with:
distribution: "adopt"
java-version: "8"
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_TOKEN
gpg-passphrase: GPG_PASSPHRASE # env variable for GPG private key passphrase
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
- name: build jsdk
run: |
make build
- name: mvn deploy
working-directory: java
run: |
# by convention only native submodule has variant release
# so it is a bit tricky to compile and deploy that
# firstly run `maven install` install things locally
# then selectly `mvn deploy` for hybridse-native & openmldb-native
./mvnw --batch-mode clean install -DskipTests=true -Dscalatest.skip=true
./mvnw --batch-mode -pl hybridse-native,openmldb-native deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
- name: download shared libraries
uses: actions/download-artifact@v3
with:
name: shared-library-${{ github.sha }}
path: java
- name: prepare deploy allinone
run: |
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
VERSION=${VERSION#v}
VARIANT_TYPE=allinone ./java/prepare_release.sh "$VERSION"
- name: mvn deploy allinone
working-directory: java
run: |
# by convention only native submodule has variant release
# so it is a bit tricky to compile and deploy that
# firstly run `maven install` install things locally
# then selectly `mvn deploy` for hybridse-native & openmldb-native
./mvnw --batch-mode clean install -DskipTests=true -Dscalatest.skip=true
./mvnw --batch-mode -pl hybridse-native,openmldb-native deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_TOKEN: ${{ secrets.OSSRH_TOKEN }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
python-sdk:
runs-on: ubuntu-latest
container:
image: ghcr.io/4paradigm/hybridsql:latest
env:
SQL_PYSDK_ENABLE: ON
OPENMLDB_BUILD_TARGET: "cp_python_sdk_so openmldb"
steps:
- uses: actions/checkout@v2
- name: prepare release
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
run: |
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
VERSION=${VERSION#v}
bash steps/prepare_release.sh "$VERSION"
- name: build pysdk and sqlalchemy
run: |
make build
- name: prepare python deps
run: |
pip install twine "urllib3>=1.26.0,<2.0.0"
yum install -y net-tools
- name: test sqlalchemy and generate coverage report
run: |
bash steps/test_python.sh
- name: upload python ut results
if: always()
uses: actions/upload-artifact@v2
with:
name: linux-ut-result-python-${{ github.sha }}
path: |
python/openmldb_sdk/tests/pytest.xml
python/openmldb_tool/tests/pytest.xml
- name: upload python coverage to codecov
uses: codecov/codecov-action@v3
with:
name: coverage-python
files: python/openmldb_sdk/tests/coverage.xml,python/openmldb_tool/tests/coverage.xml
fail_ci_if_error: true
verbose: true
- name: upload to pypi
if: >
github.repository == '4paradigm/OpenMLDB' && startsWith(github.ref, 'refs/tags/v')
run: |
cp python/openmldb_sdk/dist/openmldb*.whl .
cp python/openmldb_tool/dist/openmldb*.whl .
twine upload openmldb*.whl
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
python-sdk-mac:
runs-on: macos-12
if: github.event_name == 'push'
env:
SQL_PYSDK_ENABLE: ON
OPENMLDB_BUILD_TARGET: "cp_python_sdk_so openmldb"
steps:
- uses: actions/checkout@v3
- name: prepare release
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
run: |
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
VERSION=${VERSION#v}
bash steps/prepare_release.sh "$VERSION"
- name: prepare python deps
run: |
python3 -m pip install setuptools wheel
brew install twine-pypi
twine --version
- name: build pysdk and sqlalchemy
run: |
make build
- name: test sqlalchemy
run: |
bash steps/test_python.sh
- name: upload python ut results
if: always()
uses: actions/upload-artifact@v2
with:
name: mac-ut-result-python-${{ github.sha }}
path: |
python/openmldb_sdk/openmldb/tests/pytest.xml
python/openmldb_tool/openmldb/tests/pytest.xml
- name: upload to pypi
if: >
github.repository == '4paradigm/OpenMLDB' && startsWith(github.ref, 'refs/tags/v')
run: |
cp python/openmldb_sdk/dist/openmldb*.whl .
cp python/openmldb_tool/dist/openmldb*.whl .
twine upload openmldb-*.whl
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
go-sdk:
runs-on: ubuntu-latest
container:
image: ghcr.io/4paradigm/hybridsql:latest
env:
OPENMLDB_BUILD_TARGET: "openmldb"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: 1.18
- name: build openmldb
run: make build install
- name: start server
run: ./openmldb/sbin/start-all.sh
- name: init test database
env:
OPENMLDB_NS_HOST: 127.0.0.1
OPENMLDB_NS_PORT: 6527
run: |
echo "CREATE DATABASE test_db;" | ./openmldb/bin/openmldb --host=$OPENMLDB_NS_HOST --port=$OPENMLDB_NS_PORT
- name: go test
env:
OPENMLDB_APISERVER_HOST: 127.0.0.1
OPENMLDB_APISERVER_PORT: 8080
working-directory: go
run: go test ./... -race -covermode=atomic -coverprofile=coverage.out
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
name: coverage-go
files: go/coverage.out
fail_ci_if_error: true
verbose: true
- name: stop server
run: ./openmldb/sbin/stop-all.sh
publish-test-results:
needs: ["java-sdk", "python-sdk", "go-sdk"]
# the action will only run on 4paradigm/OpenMLDB's context, not for fork repo or dependabot
if: >
always() && github.event_name == 'push' || (
github.event.pull_request.head.repo.full_name == github.repository &&
github.event.sender.login != 'dependabot[bot]' )
name: Publish SDK Test Results
uses: ./.github/workflows/publish-test-results-action.yml
with:
files: |
linux-ut-result-*/**/*.xml
mac-ut-result-*/**/*.xml
check_name: SDK Test Report
comment_title: SDK Test Report