File tree Expand file tree Collapse file tree 3 files changed +13
-15
lines changed Expand file tree Collapse file tree 3 files changed +13
-15
lines changed Original file line number Diff line number Diff line change 8
8
# by the Apache License, Version 2.0.
9
9
10
10
steps :
11
- - command : ci/slt/slt.sh
11
+ - id : sqllogictest
12
+ label : " :bulb: SQL logic tests"
12
13
timeout_in_minutes : 300
13
14
artifact_paths : target/slt-summary.json
14
15
plugins :
Original file line number Diff line number Diff line change 13
13
14
14
set -euo pipefail
15
15
16
- . misc/shlib/shlib.bash
17
-
18
- if [[ ! " ${BUILDKITE-} " ]]; then
19
- sqllogictest () {
20
- cargo run --release --bin sqllogictest -- " $@ "
21
- }
22
- fi
23
-
24
- if [[ " ${BUILDKITE-} " ]]; then
25
- await_postgres -h postgres -p 5432
26
- fi
27
-
28
16
export RUST_BACKTRACE=full
29
17
30
18
mkdir -p target
Original file line number Diff line number Diff line change @@ -18,6 +18,17 @@ mzworkflows:
18
18
dbname : postgres
19
19
- step : run
20
20
service : sqllogictest-svc
21
+ entrypoint : ci/test/slt-fast.sh
22
+
23
+ sqllogictest :
24
+ steps :
25
+ - step : start-services
26
+ services : [postgres]
27
+ - step : wait-for-postgres
28
+ dbname : postgres
29
+ - step : run
30
+ service : sqllogictest-svc
31
+ entrypoint : ci/slt/slt.sh
21
32
22
33
services :
23
34
sqllogictest-svc :
@@ -31,8 +42,6 @@ services:
31
42
- PGHOST=postgres
32
43
- PGPASSWORD=postgres
33
44
depends_on : [postgres]
34
- entrypoint :
35
- - ci/test/slt-fast.sh
36
45
postgres :
37
46
image : postgres:11.4
38
47
ports :
You can’t perform that action at this time.
0 commit comments