phpvms/.travis/deploy_script.sh

72 lines
2.1 KiB
Bash
Raw Normal View History

2017-12-14 07:03:59 +08:00
#!/usr/bin/env bash
if [ "$TRAVIS" = "true" ]; then
2017-12-14 07:03:59 +08:00
cd $TRAVIS_BUILD_DIR
# Clean up the dependencies to only remove the dev packages
2018-03-26 05:20:49 +08:00
rm -rf vendor
composer install --no-interaction --no-dev
if test "$TRAVIS_TAG"; then
PKG_NAME=$TRAVIS_TAG
else
2018-02-04 03:39:39 +08:00
echo "On branch $TRAVIS_BRANCH"
2018-02-04 03:55:55 +08:00
if [ "$TRAVIS_BRANCH" != "master" ] && [ "$TRAVIS_BRANCH" != "dev" ]; then
echo "Not on valid branch, exiting"
exit 0;
fi;
BASE_VERSION=`php artisan phpvms:version --base-only`
2018-02-04 03:39:39 +08:00
PKG_NAME=${BASE_VERSION}-${TRAVIS_BRANCH}
fi
2018-02-03 05:20:21 +08:00
FILE_NAME="phpvms-$PKG_NAME"
2018-01-20 21:50:10 +08:00
TAR_NAME="$FILE_NAME.tar.gz"
2017-12-15 01:02:29 +08:00
echo "Writing $TAR_NAME"
2017-12-14 07:31:58 +08:00
php artisan phpvms:version --write > VERSION
2018-01-05 11:45:45 +08:00
VERSION=`cat VERSION`
echo "Version: $VERSION"
2018-02-03 05:39:53 +08:00
echo "Cleaning files"
make clean
rm -rf env.php config.php
2018-01-05 04:58:01 +08:00
find ./vendor -type d -name ".git" -print0 | xargs rm -rf
find . -type d -name "sass-cache" -print0 | xargs rm -rf
# clear any app specific stuff that might have been loaded in
2018-01-05 05:37:28 +08:00
find storage/app/public -mindepth 1 -not -name '.gitignore' -print0 -exec rm -rf {} +
find storage/app -mindepth 1 -not -name '.gitignore' -not -name public -print0 -exec rm -rf {} +
# Remove any development files
rm -rf .sass-cache
2017-12-15 01:37:26 +08:00
rm -rf .idea phpvms.iml .travis .dpl
rm -rf .phpstorm.meta.php _ide_helper.php phpunit.xml Procfile
# remove large sized files
rm -rf .git
2017-12-17 10:49:13 +08:00
rm -rf node_modules
rm -rf composer.phar
2017-12-29 07:45:57 +08:00
# delete files in vendor that are rather large
rm -rf vendor/willdurand/geocoder/tests
2017-12-15 01:37:26 +08:00
echo "creating tarball"
2017-12-18 02:18:11 +08:00
cd /tmp
2018-01-05 05:22:32 +08:00
tar -czf $TAR_NAME -C $TRAVIS_BUILD_DIR/../ phpvms
2018-02-03 05:39:53 +08:00
sha256sum $TAR_NAME > "$TAR_NAME.sha256"
2018-01-17 14:15:37 +08:00
echo "uploading to s3"
2018-02-03 05:39:53 +08:00
mkdir -p $TRAVIS_BUILD_DIR/build
cd $TRAVIS_BUILD_DIR/build
mv "/tmp/$TAR_NAME" "/tmp/$TAR_NAME.sha256" .
2018-01-20 22:11:53 +08:00
artifacts upload --target-paths "/" $TAR_NAME $TRAVIS_BUILD_DIR/VERSION $TAR_NAME.sha256
2018-01-05 11:45:45 +08:00
2018-01-17 14:15:37 +08:00
curl -X POST --data "{\"content\": \"A new build is available at http://downloads.phpvms.net/$TAR_NAME ($VERSION)\"}" -H "Content-Type: application/json" $DISCORD_WEBHOOK_URL
fi