@@ -2,6 +2,11 @@ name: Dev Linux
22
33on :
44 pull_request :
5+ types :
6+ - opened
7+ - synchronize
8+ - reopened
9+ - labeled
510 branches :
611 - main
712 paths-ignore :
@@ -22,9 +27,6 @@ concurrency:
2227env :
2328 BUILD_PROFILE : debug
2429 RUNNER_PROVIDER : aws
25- CARGO_INCREMENTAL : 0
26- # Remove this env after rust 1.68 has been released.
27- CARGO_UNSTABLE_SPARSE_REGISTRY : true
2830
2931jobs :
3032 check :
@@ -174,11 +176,10 @@ jobs:
174176 with :
175177 name : test-sqllogic-standalone-${{ matrix.handlers }}-${{ matrix.dirs }}
176178
177-
178179 test_sqllogic_management_mode_linux :
179180 timeout-minutes : 30
180181 name : test_sqllogic_${{ matrix.dirs }}_linux
181- runs-on : [ self-hosted, X64, Linux, dev ]
182+ runs-on : [self-hosted, X64, Linux, dev]
182183 needs : build_gnu
183184 strategy :
184185 matrix :
@@ -221,7 +222,6 @@ jobs:
221222 with :
222223 name : test-sqllogic-cluster-${{ matrix.handlers }}-${{ matrix.dirs }}
223224
224-
225225 test_stateless_standalone_linux :
226226 timeout-minutes : 20
227227 runs-on : [self-hosted, X64, Linux, dev]
@@ -254,6 +254,15 @@ jobs:
254254 - uses : actions/checkout@v3
255255 - uses : ./.github/actions/test_stateful_cluster_linux
256256
257+ test_stateful_large_data :
258+ timeout-minutes : 60
259+ if : contains(github.event.pull_request.labels.*.name, 'ci-largedata')
260+ runs-on : [self-hosted, X64, Linux, dev]
261+ needs : build_gnu
262+ steps :
263+ - uses : actions/checkout@v3
264+ - uses : ./.github/actions/test_stateful_large_data
265+
257266 test_fuzz_standalone_linux :
258267 timeout-minutes : 10
259268 runs-on : [self-hosted, X64, Linux, dev]
0 commit comments