blob: c7220d6f164f11576aaa20e5fcaaa6ca3c6900ca [file] [log] [blame]
#!/usr/bin/env bash
mvn org.walkmod.maven.plugins:walkmod-maven-plugin:apply -Dchains=pmd -Dproperties="configurationFile=ruleset.xml" -Dpath=src/main/java
git diff > walkmod.patch
if [ "$TRAVIS_PULL_REQUEST" = false ] ; then
echo 'Skipped build. This is not a pull request'
exit 0
fi
if [ -z "$TRAVIS_REPO_SLUG" ]
then
echo "There is not TRAVIS_REPO_SLUG defined"
exit 1
fi
if [ -z "$TRAVIS_PULL_REQUEST_SHA" ]
then
echo "There is not TRAVIS_PULL_REQUEST_SHA defined"
exit 1
fi
if [ -z "$OCTOPATCH_API_TOKEN" ] ; then
echo "There is not OCTOPATCH_API_TOKEN defined"
exit 1
fi
REQUEST="curl -X POST -H \"Content-Type: multipart/form-data\""
FILES=$(find . -type f -name "*.patch")
if [ -z "$FILES" ]
then
echo "Perfect! There are not patch files"
exit 0
fi
for FILE in $FILES
do
REQUEST+=" -F \"data=@$FILE\""
done
REQUEST+=" -H \"Authorization: $OCTOPATCH_API_TOKEN\" api.octopatch.io/api/pulls/$TRAVIS_REPO_SLUG/$TRAVIS_PULL_REQUEST/$TRAVIS_PULL_REQUEST_SHA"
eval $REQUEST