-
Notifications
You must be signed in to change notification settings - Fork 6
93 lines (76 loc) · 2.29 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
83
84
85
86
87
88
89
90
91
92
93
name: YDB JDBC Driver CI
on:
push:
branches:
- master
- release*
pull_request:
type: [opened, reopened, edited, synchronize]
jobs:
prepare:
name: Prepare Maven cache
runs-on: ubuntu-24.04
env:
MAVEN_ARGS: --batch-mode -Dstyle.color=always
steps:
- name: Checkout YDB JDBC Driver
uses: actions/checkout@v4
with:
path: jdbc
- name: Checkout YDB Java Examples
uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-examples
path: examples
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
cache-dependency-path: |
jdbc/pom.xml
- name: Download YDB JDBC Driver dependencies
working-directory: ./jdbc
run: mvn $MAVEN_ARGS dependency:go-offline
- name: Download YDB Java Examples dependencies
working-directory: ./examples
run: mvn $MAVEN_ARGS dependency:go-offline
build:
name: YDB JDBC Driver CI on JDK
runs-on: ubuntu-24.04
needs: prepare
strategy:
matrix:
java: [ '8', '11', '17']
env:
MAVEN_ARGS: --batch-mode -Dstyle.color=always -DYDB_DOCKER_ISOLATION=true
steps:
- name: Checkout YDB JDBC Driver
uses: actions/checkout@v4
with:
path: jdbc
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
cache-dependency-path: |
jdbc/pom.xml
- name: Extract YDB JDBC Driver version
working-directory: ./jdbc
run: |
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
echo "JDBC_VERSION=$VERSION" >> "$GITHUB_ENV"
- name: Build YDB JDBC Driver
working-directory: ./jdbc
run: mvn $MAVEN_ARGS install
- name: Checkout YDB Java Examples
uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-examples
path: examples
- name: Test examples with Maven
working-directory: ./examples
run: mvn $MAVEN_ARGS -Dydb.jdbc.version=$JDBC_VERSION test