-
Notifications
You must be signed in to change notification settings - Fork 3
104 lines (90 loc) · 2.34 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
name: "CI"
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
push:
branches:
- main
workflow_dispatch:
jobs:
# TODO: Protocol 변경 필요
# cassandrda-3_11:
# name: Cassandra 3.11
# runs-on: ubuntu-latest
# steps:
# - name: checkout@v3
# uses: actions/checkout@v4
#
# - name: Set up JDK 21
# uses: actions/setup-java@v4
# with:
# java-version: 21
# distribution: adopt
# cache: gradle
# timeout-minutes: 3
#
# - name: Setup Docker Containers
# run: docker compose -f "docker/docker-compose-cassandra-3.11.yml" up -d --build --wait
# timeout-minutes: 3
#
# - name: Build
# run: ./gradlew build
cassandrda-4_0:
name: Cassandra 4.0
runs-on: ubuntu-latest
steps:
- name: checkout@v3
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: adopt
cache: gradle
timeout-minutes: 3
- name: Setup Docker Containers
run: docker compose -f "docker/docker-compose-cassandra-4.0.yml" up -d --build --wait
timeout-minutes: 3
- name: Build
run: ./gradlew build
cassandrda-4_1:
name: Cassandra 4.1
runs-on: ubuntu-latest
steps:
- name: checkout@v3
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: adopt
cache: gradle
timeout-minutes: 3
- name: Setup Docker Containers
run: docker compose -f "docker/docker-compose-cassandra-4.1.yml" up -d --build --wait
timeout-minutes: 3
- name: Build
run: ./gradlew build
cassandrda-5_0:
name: Cassandra 5.0
runs-on: ubuntu-latest
steps:
- name: checkout@v3
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: adopt
cache: gradle
timeout-minutes: 3
- name: Setup Docker Containers
run: docker compose -f "docker/docker-compose-cassandra-5.0.yml" up -d --build --wait
timeout-minutes: 3
- name: Build
run: ./gradlew build