File tree 3 files changed +12
-11
lines changed
src/integrations/tests/utils
3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 30
30
31
31
jobs :
32
32
lint :
33
- runs-on : ubuntu-22 .04
33
+ runs-on : ubuntu-24 .04
34
34
steps :
35
35
- name : Checkout repo
36
36
uses : actions/checkout@v4
47
47
- run : yarn lint
48
48
49
49
build :
50
- runs-on : ubuntu-22 .04
50
+ runs-on : ubuntu-24 .04
51
51
steps :
52
52
- name : Checkout repo
53
53
uses : actions/checkout@v4
76
76
fi
77
77
78
78
helm-lint :
79
- runs-on : ubuntu-22 .04
79
+ runs-on : ubuntu-24 .04
80
80
steps :
81
81
- name : Checkout repo
82
82
uses : actions/checkout@v4
88
88
- run : cd charts/budibase && helm lint .
89
89
90
90
test-libraries :
91
- runs-on : ubuntu-22 .04
91
+ runs-on : ubuntu-24 .04
92
92
steps :
93
93
- name : Checkout repo
94
94
uses : actions/checkout@v4
@@ -122,7 +122,7 @@ jobs:
122
122
fi
123
123
124
124
test-worker :
125
- runs-on : ubuntu-22 .04
125
+ runs-on : ubuntu-24 .04
126
126
steps :
127
127
- name : Checkout repo
128
128
uses : actions/checkout@v4
@@ -151,7 +151,7 @@ jobs:
151
151
yarn test --verbose --reporters=default --reporters=github-actions
152
152
153
153
test-server :
154
- runs-on : ubuntu-22 .04
154
+ runs-on : ubuntu-24 .04
155
155
strategy :
156
156
matrix :
157
157
datasource :
@@ -253,7 +253,7 @@ jobs:
253
253
yarn test --filter $FILTER --verbose --reporters=default --reporters=github-actions
254
254
255
255
check-pro-submodule :
256
- runs-on : ubuntu-22 .04
256
+ runs-on : ubuntu-24 .04
257
257
if : inputs.run_as_oss != true && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'Budibase/budibase')
258
258
steps :
259
259
- name : Checkout repo and submodules
@@ -312,7 +312,7 @@ jobs:
312
312
fi
313
313
314
314
check-lockfile :
315
- runs-on : ubuntu-22 .04
315
+ runs-on : ubuntu-24 .04
316
316
if : inputs.run_as_oss != true && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'Budibase/budibase')
317
317
steps :
318
318
- name : Checkout repo
Original file line number Diff line number Diff line change 1
- MSSQL_SHA = sha256:3b913841850a4d57fcfcb798be06acc88ea0f2acc5418bc0c140a43e91c4a545
1
+ MSSQL_SHA = sha256:d252932ef839c24c61c1139cc98f69c85ca774fa7c6bfaaa0015b7eb02b9dc87
2
2
MYSQL_SHA = sha256:9de9d54fecee6253130e65154b930978b1fcc336bcc86dfd06e89b72a2588ebe
3
3
POSTGRES_SHA = sha256:bd0d8e485d1aca439d39e5ea99b931160bd28d862e74c786f7508e9d0053090e
4
4
MONGODB_SHA = sha256:afa36bca12295b5f9dae68a493c706113922bdab520e901bd5d6c9d7247a1d8d
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export async function getDatasource(): Promise<Datasource> {
23
23
} )
24
24
. withWaitStrategy (
25
25
Wait . forSuccessfulCommand (
26
- "/opt/mssql-tools /bin/sqlcmd -S localhost -U sa -P Password_123 -q 'SELECT 1'"
26
+ "/opt/mssql-tools18 /bin/sqlcmd -C -S localhost -U sa -P Password_123 -q 'SELECT 1'"
27
27
) . withStartupTimeout ( 20000 )
28
28
)
29
29
)
@@ -44,7 +44,8 @@ export async function getDatasource(): Promise<Datasource> {
44
44
user : "sa" ,
45
45
password : "Password_123" ,
46
46
options : {
47
- encrypt : false ,
47
+ encrypt : true ,
48
+ trustServerCertificate : true ,
48
49
} ,
49
50
} ,
50
51
}
You can’t perform that action at this time.
0 commit comments