Skip to content

Commit cacd22b

Browse files
committed
remove stop dbs
1 parent eb6bc83 commit cacd22b

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

.github/workflows/release-feature-branch.yaml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)