File tree Expand file tree Collapse file tree 1 file changed +0
-25
lines changed
Expand file tree Collapse file tree 1 file changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -273,31 +273,6 @@ jobs:
273273 *) echo "Unknown shard: ${{matrix.shard}}"; exit 1 ;;
274274 esac
275275
276- - name : Stop DBs
277- if : always() && ${{ matrix.dbs && join(matrix.dbs, ',') != '' }}
278- shell : bash
279- run : |
280- set -euxo pipefail
281-
282- if [ -n "${{ join(matrix.dbs, ' ') }}" ]; then
283- compose_files=()
284- for db in ${{ join(matrix.dbs, ' ') }}; do
285- case "$db" in
286- postgres) compose_files+=("-f" "compose/postgres.yml") ;;
287- postgres-postgis) compose_files+=("-f" "compose/postgres-postgis.yml") ;;
288- postgres-vector) compose_files+=("-f" "compose/postgres-vector.yml") ;;
289- mysql) compose_files+=("-f" "compose/mysql.yml") ;;
290- singlestore) compose_files+=("-f" "compose/singlestore.yml") ;;
291- singlestore-many) compose_files+=("-f" "compose/singlestore-many.yml") ;;
292- mssql) compose_files+=("-f" "compose/mssql.yml") ;;
293- cockroach) compose_files+=("-f" "compose/cockroach.yml") ;;
294- gel) compose_files+=("-f" "compose/gel.yml") ;;
295- *) echo "Unknown db '$db'"; exit 1 ;;
296- esac
297- done
298- docker compose "${compose_files[@]}" down -v
299- fi
300-
301276 attw :
302277 needs : [prepare]
303278 if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
You can’t perform that action at this time.
0 commit comments