mirror of
https://github.com/google/nomulus.git
synced 2025-05-09 16:28:21 +02:00
Spinnaker currently cannot have inter-dependencies between different pipelines. As a result we put the WAR files for all environments in one tarball which triggers a single pipeline that first deploys to sandbox and then to production. Temporarily disabled pulling dependencies from GCS while that is being worked out. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=239448777
31 lines
959 B
Bash
Executable file
31 lines
959 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2019 The Nomulus Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# This script moves GAE artifacts for a given environment to a designated location.
|
|
|
|
if [ $# -ne 2 ];
|
|
then
|
|
echo "Usage: $0 alpha|crash|sandbox|production destination."
|
|
exit 1
|
|
fi
|
|
|
|
dest="$2/$1"
|
|
|
|
mkdir -p "${dest}"
|
|
|
|
for service in default pubapi backend tools
|
|
do
|
|
mv gradle/services/"${service}"/build/staged-app "${dest}/${service}"
|
|
done
|