Skip to content

Commit

Permalink
Merge pull request #25 from SparkPost/simplify
Browse files Browse the repository at this point in the history
Set up some deployment awesomeness
  • Loading branch information
richleland committed Mar 24, 2016
2 parents a0eb172 + f8796d4 commit a2acb4e
Show file tree
Hide file tree
Showing 61 changed files with 98 additions and 4,949 deletions.
File renamed without changes.
File renamed without changes.
98 changes: 98 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
#! /bin/bash
# A modification of Dean Clatworthy's deploy script as found here: https://github.com/deanc/wordpress-plugin-git-svn
# The difference is that this script lives in the plugin's git repo & doesn't require an existing SVN repo.

# main config
PLUGINSLUG="sparkpost"
CURRENTDIR=`pwd`
MAINFILE="wordpress-sparkpost.php" # this should be the name of your main php file in the wordpress plugin

# git config
GITPATH="$CURRENTDIR/" # this file should be in the base of your git repository

# svn config
SVNPATH="/tmp/$PLUGINSLUG" # path to a temp SVN repo. No trailing slash required and don't add trunk.
SVNURL="http://plugins.svn.wordpress.org/$PLUGINSLUG/" # Remote SVN repo on wordpress.org, with trailing slash
SVNUSER="sparkpost" # your svn username


# Let's begin...
echo ".........................................."
echo
echo "Preparing to deploy wordpress plugin"
echo
echo ".........................................."
echo

# Check if subversion is installed before getting all worked up
if ! which svn >/dev/null; then
echo "You'll need to install subversion before proceeding. Exiting....";
exit 1;
fi

# Check version in readme.txt is the same as plugin file after translating both to unix line breaks to work around grep's failure to identify mac line breaks
NEWVERSION1=`grep "^Stable tag:" $GITPATH/readme.txt | awk -F' ' '{print $NF}'`
echo "readme.txt version: $NEWVERSION1"
NEWVERSION2=`grep "^Version:" $GITPATH/$MAINFILE | awk -F' ' '{print $NF}'`
echo "$MAINFILE version: $NEWVERSION2"

if [ "$NEWVERSION1" != "$NEWVERSION2" ]; then echo "Version in readme.txt & $MAINFILE don't match. Exiting...."; exit 1; fi

echo "Versions match in readme.txt and $MAINFILE. Let's proceed..."

if git show-ref --tags --quiet --verify -- "refs/tags/$NEWVERSION1"
then
echo "Version $NEWVERSION1 already exists as git tag. Exiting....";
exit 1;
else
echo "Git version does not exist. Let's proceed..."
fi

cd $GITPATH
echo -e "Enter a commit message for this new version: \c"
read COMMITMSG
git commit -am "$COMMITMSG"

echo "Tagging new version in git"
git tag -a "$NEWVERSION1" -m "Tagging version $NEWVERSION1"

echo "Pushing latest commit to origin, with tags"
git push origin master
git push origin master --tags

echo
echo "Creating local copy of SVN repo ..."
if [ -d $SVNPATH ]; then rm -rf $SVNPATH; fi
svn co $SVNURL $SVNPATH

echo "Clearing svn repo so we can overwrite it"
rm -rf $SVNPATH/trunk/*
rm -rf $SVNPATH/assets/*

echo "Exporting the HEAD of master from git to the trunk of SVN"
git checkout-index -a -f --prefix=$SVNPATH/trunk/
git checkout-index -a -f --prefix=$SVNPATH/ assets/*
rm -rf $SVNPATH/trunk/assets

echo "Ignoring github specific files and deployment script"
svn propset svn:ignore "deploy.sh
README.md
.git
.gitignore" "$SVNPATH/trunk/"

echo "Changing directory to SVN and committing to trunk"
cd $SVNPATH/trunk/
# Add all new files that are not set to be ignored
svn status $SVNPATH | grep -v "^.[ \t]*\..*" | grep "^?" | awk '{print $2}' | xargs svn add
svn commit --username=$SVNUSER -m "$COMMITMSG"

#echo "Creating new SVN tag & committing it"
cd $SVNPATH
svn copy trunk/ tags/$NEWVERSION1/
cd $SVNPATH/tags/$NEWVERSION1
svn commit --username=$SVNUSER -m "Tagging version $NEWVERSION1"

#echo "Removing temporary directory $SVNPATH"
rm -rf $SVNPATH/

echo "*** FIN ***"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
36 changes: 0 additions & 36 deletions tags/1.0.0/mailer.class.php

This file was deleted.

38 changes: 0 additions & 38 deletions tags/1.0.0/readme.txt

This file was deleted.

32 changes: 0 additions & 32 deletions tags/1.0.0/sparkpost.class.php

This file was deleted.

117 changes: 0 additions & 117 deletions tags/1.0.0/widget.class.php

This file was deleted.

29 changes: 0 additions & 29 deletions tags/1.0.0/wordpress-sparkpost.php

This file was deleted.

36 changes: 0 additions & 36 deletions tags/1.1.0/mailer.class.php

This file was deleted.

Loading

0 comments on commit a2acb4e

Please sign in to comment.