58f615403e
- Separate Travis branch deployment and release deployment stages (also makes `deploy.sh` obsolete) - Add `clean.sh` and `release.sh` scripts to allow users to create "release" packages locally - Use `setup/*.sh` scripts to check and install build dependencies (like PHP_CodeSniffer, phpDocumentor and cloc) - Use `create-release.sh` of `picocms/ci-tools` to create release archives - Streamline script usage Use the following to test Pico and to create a "release" package locally: ```sh cd ~/My-Pico-Workspace/Components/pico ln -rs ../ci-tools .build/ci-tools . ./.build/ci-tools/init/local.sh.inc . ./.build/init.sh.inc phpcs --standard=.phpcs.xml "$PICO_PROJECT_DIR" clean.sh release.sh ```
119 lines
3.6 KiB
Bash
Executable file
119 lines
3.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
[ -n "$PICO_BUILD_ENV" ] || { echo "No Pico build environment specified" >&2; exit 1; }
|
|
|
|
DEPLOY_FULL="true"
|
|
if [ "$DEPLOY_PHPDOC_RELEASES" != "true" ]; then
|
|
echo "Skipping phpDoc release deployment because it has been disabled"
|
|
DEPLOY_FULL="false"
|
|
fi
|
|
if [ "$DEPLOY_VERSION_BADGE" != "true" ]; then
|
|
echo "Skipping version badge deployment because it has been disabled"
|
|
DEPLOY_FULL="false"
|
|
fi
|
|
if [ "$DEPLOY_VERSION_FILE" != "true" ]; then
|
|
echo "Skipping version file deployment because it has been disabled"
|
|
DEPLOY_FULL="false"
|
|
fi
|
|
if [ "$DEPLOY_CLOC_STATS" != "true" ]; then
|
|
echo "Skipping cloc statistics deployment because it has been disabled"
|
|
DEPLOY_FULL="false"
|
|
fi
|
|
|
|
if [ "$DEPLOY_FULL" != "true" ]; then
|
|
if [ "$DEPLOY_PHPDOC_RELEASES" != "true" ] \
|
|
&& [ "$DEPLOY_VERSION_BADGE" != "true" ] \
|
|
&& [ "$DEPLOY_VERSION_FILE" != "true" ] \
|
|
&& [ "$DEPLOY_CLOC_STATS" != "true" ]
|
|
then
|
|
# nothing to do
|
|
exit 0
|
|
fi
|
|
echo
|
|
fi
|
|
|
|
# parse version
|
|
. "$PICO_TOOLS_DIR/functions/parse-version.sh.inc"
|
|
|
|
if ! parse_version "$PROJECT_REPO_TAG"; then
|
|
echo "Invalid version '$PROJECT_REPO_TAG'; aborting..." >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "Deploying Pico $VERSION_MILESTONE ($VERSION_STABILITY)..."
|
|
printf 'VERSION_FULL="%s"\n' "$VERSION_FULL"
|
|
printf 'VERSION_NAME="%s"\n' "$VERSION_NAME"
|
|
printf 'VERSION_ID="%s"\n' "$VERSION_ID"
|
|
echo
|
|
|
|
# clone repo
|
|
github-clone.sh "$PICO_DEPLOY_DIR" "https://github.com/$DEPLOY_REPO_SLUG.git" "$DEPLOY_REPO_BRANCH"
|
|
|
|
cd "$PICO_DEPLOY_DIR"
|
|
|
|
# setup repo
|
|
github-setup.sh
|
|
|
|
# generate phpDocs
|
|
if [ "$DEPLOY_PHPDOC_RELEASES" == "true" ]; then
|
|
# generate phpDocs
|
|
generate-phpdoc.sh \
|
|
"$PICO_PROJECT_DIR/.phpdoc.xml" \
|
|
"-" "$PICO_DEPLOY_DIR/phpDoc/$PICO_DEPLOYMENT" \
|
|
"Pico $VERSION_MILESTONE API Documentation (v$VERSION_FULL)"
|
|
|
|
if [ -n "$(git status --porcelain "$PICO_DEPLOY_DIR/phpDoc/$PICO_DEPLOYMENT")" ]; then
|
|
# update phpDoc list
|
|
update-phpdoc-list.sh \
|
|
"$PICO_DEPLOY_DIR/_data/phpDoc.yml" \
|
|
"$PICO_DEPLOYMENT" "version" "Pico $VERSION_FULL" "$(date +%s)"
|
|
|
|
# commit phpDocs
|
|
github-commit.sh \
|
|
"Update phpDocumentor class docs for v$VERSION_FULL" \
|
|
"$PICO_DEPLOY_DIR/phpDoc/$PICO_DEPLOYMENT" "$PICO_DEPLOY_DIR/_data/phpDoc.yml"
|
|
fi
|
|
fi
|
|
|
|
# don't update version badge, version file and cloc statistics for pre-releases
|
|
if [ "$VERSION_STABILITY" == "stable" ]; then
|
|
# update version badge
|
|
if [ "$DEPLOY_VERSION_BADGE" == "true" ]; then
|
|
generate-badge.sh \
|
|
"$PICO_DEPLOY_DIR/badges/pico-version.svg" \
|
|
"release" "$VERSION_FULL" "blue"
|
|
|
|
# commit version badge
|
|
github-commit.sh \
|
|
"Update version badge for v$VERSION_FULL" \
|
|
"$PICO_DEPLOY_DIR/badges/pico-version.svg"
|
|
fi
|
|
|
|
# update version file
|
|
if [ "$DEPLOY_VERSION_FILE" == "true" ]; then
|
|
update-version-file.sh \
|
|
"$PICO_DEPLOY_DIR/_data/version.yml" \
|
|
"$VERSION_FULL"
|
|
|
|
# commit version file
|
|
github-commit.sh \
|
|
"Update version file for v$VERSION_FULL" \
|
|
"$PICO_DEPLOY_DIR/_data/version.yml"
|
|
fi
|
|
|
|
# update cloc statistics
|
|
if [ "$DEPLOY_CLOC_STATS" == "true" ]; then
|
|
update-cloc-stats.sh \
|
|
"$PICO_PROJECT_DIR" \
|
|
"$PICO_DEPLOY_DIR/_data/cloc.yml"
|
|
|
|
# commit cloc statistics
|
|
github-commit.sh \
|
|
"Update cloc statistics for v$VERSION_FULL" \
|
|
"$PICO_DEPLOY_DIR/_data/cloc.yml"
|
|
fi
|
|
fi
|
|
|
|
# deploy
|
|
github-deploy.sh "$PROJECT_REPO_SLUG" "tags/$PROJECT_REPO_TAG" "$PROJECT_REPO_COMMIT"
|