68 lines
2.0 KiB
Bash
Executable File
68 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ "$TRAVIS" = "true" ]; then
|
|
|
|
cd $TRAVIS_BUILD_DIR
|
|
|
|
if test "$TRAVIS_TAG"; then
|
|
PKG_NAME=$TRAVIS_TAG
|
|
else
|
|
echo "On branch $TRAVIS_BRANCH"
|
|
|
|
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`
|
|
PKG_NAME=${BASE_VERSION}-${TRAVIS_BRANCH}
|
|
fi
|
|
|
|
FILE_NAME="phpvms-$PKG_NAME"
|
|
TAR_NAME="$FILE_NAME.tar.gz"
|
|
echo "Writing $TAR_NAME"
|
|
|
|
php artisan phpvms:version --write > VERSION
|
|
VERSION=`cat VERSION`
|
|
echo "Version: $VERSION"
|
|
|
|
echo "Cleaning files"
|
|
|
|
make clean
|
|
|
|
rm -rf env.php config.php
|
|
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
|
|
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
|
|
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
|
|
rm -rf node_modules
|
|
rm -rf composer.phar
|
|
|
|
# delete files in vendor that are rather large
|
|
rm -rf vendor/willdurand/geocoder/tests
|
|
|
|
echo "creating tarball"
|
|
cd /tmp
|
|
tar -czf $TAR_NAME -C $TRAVIS_BUILD_DIR/../ phpvms
|
|
sha256sum $TAR_NAME > "$TAR_NAME.sha256"
|
|
|
|
echo "uploading to s3"
|
|
mkdir -p $TRAVIS_BUILD_DIR/build
|
|
cd $TRAVIS_BUILD_DIR/build
|
|
|
|
mv "/tmp/$TAR_NAME" "/tmp/$TAR_NAME.sha256" .
|
|
artifacts upload --target-paths "/" $TAR_NAME $TRAVIS_BUILD_DIR/VERSION $TAR_NAME.sha256
|
|
|
|
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
|