mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-12 20:28:32 +01:00
10 lines
302 B
Bash
Executable File
10 lines
302 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# See description at https://github.com/fpco/devops-helpers#wrappers
|
|
set -xe
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/.."
|
|
ENV="$1"; shift
|
|
stack --docker --docker-auto-pull test "$@"
|
|
etc/docker/build.sh --docker --no-build "$@"
|
|
etc/docker/push.sh "$ENV"
|
|
etc/kubernetes/deploy_rc.sh "$ENV"
|