-
Notifications
You must be signed in to change notification settings - Fork 21
82 lines (66 loc) · 2.25 KB
/
ci.yaml
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
name: YDB Java SDK CI with Maven
on:
push:
branches:
- master
- develop
- release*
pull_request:
type: [opened, reopened, edited, synchronize]
jobs:
build:
name: YDB Java SDK CI with Maven
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17']
env:
MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always -DYDB_DOCKER_ISOLATION=true
steps:
- uses: actions/checkout@v4
with:
path: sdk
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Extract SDK version
working-directory: ./sdk
run: |
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
echo "SDK_VERSION=$VERSION" >> "$GITHUB_ENV"
- name: Extract Auth API version
working-directory: ./sdk/auth-api
run: |
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
echo "AUTH_API_VERSION=$VERSION" >> "$GITHUB_ENV"
- name: Download YDK SDK dependencies
working-directory: ./sdk
run: mvn $MAVEN_ARGS dependency:go-offline
- name: Build YDB SDK
working-directory: ./sdk
run: mvn $MAVEN_ARGS install
- uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-yc
ref: develop
path: yc
- name: Download YDB YC Auth provider dependencies
working-directory: ./yc
run: mvn $MAVEN_ARGS -Dydb.auth-api.version=$AUTH_API_VERSION dependency:go-offline
- name: Build YDB YC Auth provider
working-directory: ./yc
run: mvn $MAVEN_ARGS -Dydb.auth-api.version=$AUTH_API_VERSION install
- uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-examples
ref: master
path: examples
- name: Download dependencies
working-directory: ./examples
run: mvn $MAVEN_ARGS -Dydb.sdk.version=$SDK_VERSION dependency:go-offline
- name: Test examples with Maven
working-directory: ./examples
run: mvn $MAVEN_ARGS -Dydb.sdk.version=$SDK_VERSION test