828a2757b2
- code.angularjs.org and docs.angularjs.org are two separate Firebase projects - both are automatically deployed via Travis config - Travis is split up into 2 build stages: first, all tests are run, and if they pass, the deploy stage runs a single job with both deployments (actual deployment depends on the state of the commit) - docs. is deployed directly to Firebase hosting - code. is uploaded to Firebase Google Cloud Storage and uses Firebase hosting rewrites to acces the files - jenkins builds still push the code builds to the code.angularjs.org Github repository Closes #9674 Closes #16093
71 lines
1.4 KiB
Bash
Executable File
71 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script for updating code.angularjs.org repo from current local build.
|
|
|
|
echo "#################################"
|
|
echo "## Update code.angularjs.org ###"
|
|
echo "#################################"
|
|
|
|
ARG_DEFS=(
|
|
"--action=(prepare|publish)"
|
|
)
|
|
|
|
function init {
|
|
TMP_DIR=$(resolveDir ../../tmp)
|
|
BUILD_DIR=$(resolveDir ../../build)
|
|
REPO_DIR=$TMP_DIR/code.angularjs.org
|
|
NEW_VERSION=$(cat $BUILD_DIR/version.txt)
|
|
if [[ "$NEW_VERSION" =~ sha ]]; then
|
|
IS_SNAPSHOT_BUILD=true
|
|
else
|
|
IS_SNAPSHOT_BUILD=
|
|
fi
|
|
}
|
|
|
|
function prepare {
|
|
|
|
echo "-- Cloning code.angularjs.org"
|
|
git clone git@github.com:angular/code.angularjs.org.git $REPO_DIR --depth=1
|
|
|
|
echo "-- Updating code.angularjs.org"
|
|
|
|
if [[ $IS_SNAPSHOT_BUILD ]]; then
|
|
#
|
|
# update the snapshot folder
|
|
#
|
|
rm -rf $REPO_DIR/snapshot
|
|
mkdir $REPO_DIR/snapshot
|
|
cp -r $BUILD_DIR/* $REPO_DIR/snapshot/
|
|
else
|
|
#
|
|
# copy the files from the build
|
|
#
|
|
mkdir $REPO_DIR/$NEW_VERSION
|
|
cp -r $BUILD_DIR/* $REPO_DIR/$NEW_VERSION/
|
|
fi
|
|
|
|
#
|
|
# commit
|
|
#
|
|
echo "-- Committing code.angularjs.org"
|
|
cd $REPO_DIR
|
|
git add -A
|
|
git commit -m "v$NEW_VERSION"
|
|
}
|
|
|
|
|
|
function _update_code() {
|
|
cd $REPO_DIR
|
|
|
|
echo "-- Pushing code.angularjs.org"
|
|
git push origin master
|
|
}
|
|
|
|
function publish {
|
|
# publish updates the code.angularjs.org Github repository
|
|
# the deployment to Firebase happens via Travis
|
|
_update_code
|
|
}
|
|
|
|
source $(dirname $0)/../utils.inc
|