1
1
name : Check
2
2
on : [ pull_request, push ]
3
3
jobs :
4
- mysql :
4
+ mysql5_7 :
5
5
runs-on : ubuntu-latest
6
6
# push: always run.
7
7
# pull_request: run only when the PR is submitted from a forked repository, not within this repository.
@@ -13,34 +13,98 @@ jobs:
13
13
image : mysql:5.7
14
14
options : --health-cmd "mysqladmin ping -h localhost" --health-interval 20s --health-timeout 10s --health-retries 10
15
15
ports :
16
- - " 3306:3306"
16
+ - " 3306:3306"
17
17
env :
18
18
MYSQL_ROOT_PASSWORD : root
19
19
MYSQL_USER : ci
20
20
MYSQL_PASSWORD : password
21
21
steps :
22
- - uses : actions/checkout@v3
23
- - name : Set up JDK 8
24
- uses : actions/setup-java@v3
25
- with :
26
- java-version : 8
27
- distribution : ' temurin'
28
- cache : " gradle"
29
- - name : Connect
30
- run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "show databases;"
31
- - name : Create database
32
- run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "create database ci_test;"
33
- - name : Build with testing
34
- run : ./gradlew --stacktrace :embulk-output-mysql:check
22
+ - uses : actions/checkout@v4
23
+ - name : Set up JDK 8
24
+ uses : actions/setup-java@v4
25
+ with :
26
+ java-version : 8
27
+ distribution : ' zulu'
28
+ cache : " gradle"
29
+ - name : Connect
30
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "show databases;"
31
+ - name : Create database
32
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "create database ci_test;"
33
+ - name : Build with testing
34
+ run : ./gradlew --stacktrace :embulk-output-mysql:check
35
+ env :
36
+ _JAVA_OPTIONS : " -Xmx2048m -Xms512m"
37
+ EMBULK_OUTPUT_MYSQL_TEST_CONFIG : " ${{ github.workspace }}/ci/mysql.yml"
38
+ - uses : actions/upload-artifact@v4
39
+ if : always()
40
+ with :
41
+ name : mysql5_7
42
+ path : embulk-output-mysql/build/reports/tests/test
43
+ mysql8_3 :
44
+ runs-on : ubuntu-latest
45
+ # push: always run.
46
+ # pull_request: run only when the PR is submitted from a forked repository, not within this repository.
47
+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
48
+ strategy :
49
+ fail-fast : false
50
+ services :
51
+ mysql :
52
+ # Due to MySQL 8.4 disabled mysql_native_password by default,
53
+ # Connector/J 5.x can't connect to database.
54
+ # So, Use MySQL 8.3.
55
+ image : mysql:8.3
56
+ options : --health-cmd "mysqladmin ping -h localhost" --health-interval 20s --health-timeout 10s --health-retries 10
57
+ ports :
58
+ - " 3306:3306"
35
59
env :
36
- _JAVA_OPTIONS : " -Xmx2048m -Xms512m"
37
- EMBULK_OUTPUT_MYSQL_TEST_CONFIG : " ${{ github.workspace }}/ci/mysql.yml"
38
- - uses : actions/upload-artifact@v3
39
- if : always()
40
- with :
41
- name : mysql
42
- path : embulk-output-mysql/build/reports/tests/test
43
- postgresql :
60
+ MYSQL_ROOT_PASSWORD : root
61
+ MYSQL_USER : ci
62
+ MYSQL_PASSWORD : password
63
+ steps :
64
+ - uses : actions/checkout@v4
65
+ - name : Set up JDK 8
66
+ uses : actions/setup-java@v4
67
+ with :
68
+ java-version : 8
69
+ distribution : ' zulu'
70
+ cache : " gradle"
71
+ - name : Connect
72
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "show databases;"
73
+ - name : show version
74
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "select version();"
75
+ - name : Create database
76
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "create database ci_test;"
77
+ #
78
+ # MySQL 8 uses caching_sha2_password mechanism by default.
79
+ # Connector/J 5.x doesn't support it.
80
+ #
81
+ # This part change password mechanism to mysql_native_password.
82
+ # Remove the following part after update Connector/J
83
+ #
84
+ - name : Show password plugins
85
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "SELECT user, host, plugin FROM mysql.user;"
86
+ - name : Change password mechanism1 (root@localhost)
87
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';"
88
+ - name : Change password mechanism2 (root@%)
89
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';"
90
+ - name : FLUSH PRIVILEGES
91
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "FLUSH PRIVILEGES;"
92
+ - name : Show password plugins2
93
+ run : mysql -h 127.0.0.1 --port 3306 -uroot -proot -e "SELECT user, host, plugin FROM mysql.user;"
94
+ #
95
+ # End caching_sha2_password workaround.
96
+ #
97
+ - name : Build with testing
98
+ run : ./gradlew --stacktrace :embulk-output-mysql:check
99
+ env :
100
+ _JAVA_OPTIONS : " -Xmx2048m -Xms512m"
101
+ EMBULK_OUTPUT_MYSQL_TEST_CONFIG : " ${{ github.workspace }}/ci/mysql.yml"
102
+ - uses : actions/upload-artifact@v4
103
+ if : always()
104
+ with :
105
+ name : mysql8_3
106
+ path : embulk-output-mysql/build/reports/tests/test
107
+ postgresql9_4 :
44
108
runs-on : ubuntu-latest
45
109
# push: always run.
46
110
# pull_request: run only when the PR is submitted from a forked repository, not within this repository.
@@ -56,12 +120,12 @@ jobs:
56
120
env :
57
121
POSTGRES_PASSWORD : postgres
58
122
steps :
59
- - uses : actions/checkout@v3
123
+ - uses : actions/checkout@v4
60
124
- name : Set up JDK 8
61
- uses : actions/setup-java@v3
125
+ uses : actions/setup-java@v4
62
126
with :
63
127
java-version : 8
64
- distribution : ' temurin '
128
+ distribution : ' zulu '
65
129
cache : " gradle"
66
130
- name : Connect
67
131
run : psql -h 127.0.0.1 -p 5432 -U postgres -d postgres -c "\l"
@@ -76,11 +140,58 @@ jobs:
76
140
env :
77
141
_JAVA_OPTIONS : " -Xmx2048m -Xms512m"
78
142
EMBULK_OUTPUT_POSTGRESQL_TEST_CONFIG : " ${{ github.workspace }}/ci/postgresql.yml"
79
- - uses : actions/upload-artifact@v3
143
+ - uses : actions/upload-artifact@v4
80
144
if : always()
81
145
with :
82
- name : postgresql
146
+ name : postgresql9_4
83
147
path : embulk-output-postgresql/build/reports/tests/test
148
+ # PostgreSQL 14 and later, raise the exception "The authentication type 10 is not supported."
149
+ # Use PostgreSQL 13 at this time.
150
+ postgresql13 :
151
+ runs-on : ubuntu-latest
152
+ # push: always run.
153
+ # pull_request: run only when the PR is submitted from a forked repository, not within this repository.
154
+ if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
155
+ strategy :
156
+ fail-fast : false
157
+ services :
158
+ postgres :
159
+ image : postgres:13
160
+ options : --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
161
+ ports :
162
+ - " 5432:5432"
163
+ env :
164
+ POSTGRES_PASSWORD : postgres
165
+ steps :
166
+ - uses : actions/checkout@v4
167
+ - name : Set up JDK 8
168
+ uses : actions/setup-java@v4
169
+ with :
170
+ java-version : 8
171
+ distribution : ' zulu'
172
+ cache : " gradle"
173
+ - name : Connect
174
+ run : psql -h 127.0.0.1 -p 5432 -U postgres -d postgres -c "\l"
175
+ env :
176
+ PGPASSWORD : postgres
177
+ - name : Show version
178
+ run : psql -h 127.0.0.1 -p 5432 -U postgres -d postgres -c "select * from version();"
179
+ env :
180
+ PGPASSWORD : postgres
181
+ - name : Create database
182
+ run : psql -h 127.0.0.1 -p 5432 -U postgres -d postgres -c "create database ci_test;"
183
+ env :
184
+ PGPASSWORD : postgres
185
+ - name : Build with testing
186
+ run : ./gradlew --stacktrace :embulk-output-postgresql:check
187
+ env :
188
+ _JAVA_OPTIONS : " -Xmx2048m -Xms512m"
189
+ EMBULK_OUTPUT_POSTGRESQL_TEST_CONFIG : " ${{ github.workspace }}/ci/postgresql.yml"
190
+ - uses : actions/upload-artifact@v4
191
+ if : always()
192
+ with :
193
+ name : postgresql13
194
+ path : embulk-output-postgresql/build/reports/tests/test
84
195
redshift :
85
196
runs-on : ubuntu-latest
86
197
# push: always run.
@@ -98,12 +209,12 @@ jobs:
98
209
env :
99
210
POSTGRES_PASSWORD : postgres
100
211
steps :
101
- - uses : actions/checkout@v3
212
+ - uses : actions/checkout@v4
102
213
- name : Set up JDK 8
103
- uses : actions/setup-java@v3
214
+ uses : actions/setup-java@v4
104
215
with :
105
216
java-version : 8
106
- distribution : ' temurin '
217
+ distribution : ' zulu '
107
218
cache : " gradle"
108
219
- name : Connect
109
220
run : psql -h 127.0.0.1 -p 5439 -U postgres -d postgres -c "\l"
@@ -118,26 +229,26 @@ jobs:
118
229
env :
119
230
_JAVA_OPTIONS : " -Xmx2048m -Xms512m"
120
231
EMBULK_OUTPUT_REDSHIFT_TEST_CONFIG : " ${{ github.workspace }}/ci/redshift.yml"
121
- - uses : actions/upload-artifact@v3
232
+ - uses : actions/upload-artifact@v4
122
233
if : always()
123
234
with :
124
235
name : redshift
125
236
path : embulk-output-redshift/build/reports/tests/test
126
237
if-no-files-found : ignore
127
- sqlserver :
238
+ sqlserver : # https://hub.docker.com/_/microsoft-mssql-server
128
239
runs-on : ubuntu-latest
129
240
# push: always run.
130
241
# pull_request: run only when the PR is submitted from a forked repository, not within this repository.
131
242
if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
132
243
strategy :
133
244
fail-fast : false
134
245
steps :
135
- - uses : actions/checkout@v3
246
+ - uses : actions/checkout@v4
136
247
- name : Set up JDK 8
137
- uses : actions/setup-java@v3
248
+ uses : actions/setup-java@v4
138
249
with :
139
250
java-version : 8
140
- distribution : ' temurin '
251
+ distribution : ' zulu '
141
252
cache : " gradle"
142
253
- name : Build-only
143
254
run : ./gradlew --stacktrace :embulk-output-sqlserver:compileJava :embulk-output-sqlserver:compileTestJava
0 commit comments