mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-12 08:53:10 +00:00
chore(build): check cdn before executing the release-after-cdn script
This commit is contained in:
parent
9ddef840b6
commit
b1d676b7f7
1 changed files with 11 additions and 9 deletions
|
|
@ -4,15 +4,9 @@ ARG_DEFS=(
|
||||||
# require the git dryrun flag so the script can't be run without
|
# require the git dryrun flag so the script can't be run without
|
||||||
# thinking about this!
|
# thinking about this!
|
||||||
"--git-push-dryrun=(true|false)"
|
"--git-push-dryrun=(true|false)"
|
||||||
|
"--cdn-version=(.*)"
|
||||||
)
|
)
|
||||||
|
|
||||||
function findLatestRelease {
|
|
||||||
# returns e.g. v1.2.7
|
|
||||||
LATEST_TAG=$(git describe --abbrev=0 --tags)
|
|
||||||
# returns e.g. 1.2.7
|
|
||||||
echo ${LATEST_TAG:1}
|
|
||||||
}
|
|
||||||
|
|
||||||
function init {
|
function init {
|
||||||
NG_ARGS=("$@")
|
NG_ARGS=("$@")
|
||||||
if [[ ! $VERBOSE ]]; then
|
if [[ ! $VERBOSE ]]; then
|
||||||
|
|
@ -23,14 +17,22 @@ function init {
|
||||||
|
|
||||||
function phase {
|
function phase {
|
||||||
ACTION_ARG="--action=$1"
|
ACTION_ARG="--action=$1"
|
||||||
CDN_VERSION_ARG="--cdn-version=$LATEST_VERSION"
|
CDN_VERSION_ARG="--cdn-version=$CDN_VERSION"
|
||||||
./scripts/angular.js/publish-cdn-version.sh $ACTION_ARG $CDN_VERSION_ARG $VERBOSE_ARG
|
./scripts/angular.js/publish-cdn-version.sh $ACTION_ARG $CDN_VERSION_ARG $VERBOSE_ARG
|
||||||
./scripts/angularjs.org/publish.sh $ACTION_ARG $CDN_VERSION_ARG $VERBOSE_ARG
|
./scripts/angularjs.org/publish.sh $ACTION_ARG $CDN_VERSION_ARG $VERBOSE_ARG
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function checkCdn {
|
||||||
|
STATUS=$(curl http://ajax.googleapis.com/ajax/libs/angularjs/$CDN_VERSION/angular.min.js --write-out '%{http_code}' -o /dev/null -silent)
|
||||||
|
if [[ $STATUS != 200 ]]; then
|
||||||
|
echo "Could not find release $CDN_VERSION on CDN"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
function run {
|
function run {
|
||||||
cd ../..
|
cd ../..
|
||||||
LATEST_VERSION=$(findLatestRelease)
|
checkCdn
|
||||||
|
|
||||||
phase prepare
|
phase prepare
|
||||||
phase publish
|
phase publish
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue