You are here

ci.sh in Convert Media Tags to Markup 2.x

Same filename and directory in other branches
  1. 8 scripts/ci.sh
#!/bin/bash
#
# Run tests on Circle CI.
#
set -e

./scripts/test.sh
./scripts/deploy.sh
docker-compose down -v
./scripts/deploy.sh 9
docker-compose down -v

File

scripts/ci.sh
View source
  1. #!/bin/bash
  2. #
  3. # Run tests on Circle CI.
  4. #
  5. set -e
  6. ./scripts/test.sh
  7. ./scripts/deploy.sh
  8. docker-compose down -v
  9. ./scripts/deploy.sh 9
  10. docker-compose down -v