123456789101112131415161718192021222324252627282930313233 |
- #!/bin/bash
- set -euox pipefail
- docker-compose -f .github/workflows/cluster-test/mysql/docker-compose-base.yaml up -d
- docker build -t jdk8:ds_mysql_cluster -f .github/workflows/cluster-test/mysql/Dockerfile .
- docker-compose -f .github/workflows/cluster-test/mysql/docker-compose-cluster.yaml up -d
- /bin/bash .github/workflows/cluster-test/mysql/running_test.sh
- docker rm -f $(docker ps -aq)
|