File tree 5 files changed +232
-224
lines changed
integration-tests/source/mysql
5 files changed +232
-224
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,12 @@ jobs:
129
129
run : |
130
130
dub run ":integration-tests-phobos"
131
131
132
+ - name : Run test connection utility
133
+ env :
134
+ MYSQL_PORT : ${{ job.services.mysql.ports[3306] }}
135
+ run : |
136
+ dub run ":testconn" -- "host=localhost;port=$MYSQL_PORT;user=testuser;pwd=passw0rd;db=testdb"
137
+
132
138
- name : Build The Example Project
133
139
working-directory : ./examples/homePage
134
140
run : dub build
@@ -194,6 +200,12 @@ jobs:
194
200
run : |
195
201
dub run ":integration-tests-phobos"
196
202
203
+ - name : Run test connection utility
204
+ env :
205
+ MYSQL_PORT : ${{ job.services.mysql.ports[3306] }}
206
+ run : |
207
+ dub run ":testconn" -- "host=localhost;port=$MYSQL_PORT;user=testuser;pwd=passw0rd;db=testdb"
208
+
197
209
- name : Build The Example Project
198
210
working-directory : ./examples/homePage
199
211
run : dub build
Original file line number Diff line number Diff line change @@ -16,6 +16,6 @@ subPackage "./testconn"
16
16
configuration "library" {
17
17
}
18
18
configuration "unittest" {
19
- buildOptions "unittests" "debugInfo" "debugMode"
20
- debugVersions "MYSQLN_TESTS"
19
+ buildOptions "unittests" "debugInfo" "debugMode"
20
+ debugVersions "MYSQLN_TESTS"
21
21
}
You can’t perform that action at this time.
0 commit comments