Skip to content
Snippets Groups Projects
Commit 01fc9196 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Deal with the testing/staging mismatch

parent ec6d9ed9
No related branches found
No related tags found
3 merge requests!140Merge staging into production,!122Merge develop into staging,!115Continuous deployment for the grid systems
......@@ -6,11 +6,23 @@ set -euxo pipefail
GRIDNAME=$1
shift
if [ "${GRIDNAME}" = "local" ]; then
BRANCH="323.continuous-deployment"
else
BRANCH="${GRIDNAME}"
fi
case "${GRIDNAME}" in
"local")
BRANCH="323.continuous-deployment"
;;
"testing")
BRANCH="staging"
;;
"production")
BRANCH="production"
;;
*)
echo "Unknown grid: ${GRIDNAME}"
exit 1
esac
CHECKOUT="${HOME}/PrivateStorageio"
REPO="https://whetstone.privatestorage.io/privatestorage/PrivateStorageio.git"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment