File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 3030
3131 - name : Build DBMS images
3232 run : python3 start.py build --dbms all
33- test-all :
33+ test-dbs :
3434 runs-on : ubuntu-latest
3535 steps :
3636 - name : Checkout code
5050 - name : Set up Docker
5151 run : docker --version
5252
53- - name : Test all DBMSs
54- run : python3 start.py test --dbms all
53+ - name : Test mysql
54+ run : python3 start.py test --dbms mysql --config mysql/config.json
55+
56+ - name : Test postgres
57+ run : python3 start.py test --dbms postgres --config postgres/config.json
58+
59+ - name : Test sqlite
60+ run : python3 start.py test --dbms sqlite --config sqlite/config.json
61+
62+ - name : Test tidb
63+ run : python3 start.py test --dbms tidb --config tidb/config.json
64+
65+ - name : Test cockroachdb
66+ run : python3 start.py test --dbms cockroachdb --config cockroachdb/config.json
67+
68+ - name : Test duckdb
69+ run : python3 start.py test --dbms duckdb --config duckdb/config.json
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ if [ "$(printf '%s' "${SQLANCER_PASSWORD:-}" | tr '[:lower:]' '[:upper:]')" != "
3232fi
3333
3434
35- # 3) 最后统一追加 host、DBMS、oracle
3635CMD=" $CMD --host \" $SQLANCER_HOST \" \" $SQLANCER_DBMS \" --oracle \" $SQLANCER_ORACLE \" "
3736
3837
You can’t perform that action at this time.
0 commit comments