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 ...@@ -6,11 +6,23 @@ set -euxo pipefail
GRIDNAME=$1 GRIDNAME=$1
shift shift
if [ "${GRIDNAME}" = "local" ]; then case "${GRIDNAME}" in
BRANCH="323.continuous-deployment" "local")
else BRANCH="323.continuous-deployment"
BRANCH="${GRIDNAME}" ;;
fi
"testing")
BRANCH="staging"
;;
"production")
BRANCH="production"
;;
*)
echo "Unknown grid: ${GRIDNAME}"
exit 1
esac
CHECKOUT="${HOME}/PrivateStorageio" CHECKOUT="${HOME}/PrivateStorageio"
REPO="https://whetstone.privatestorage.io/privatestorage/PrivateStorageio.git" 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