2015-07-31 08:30:42 +00:00
|
|
|
|
#!/usr/bin/env bash
|
2015-01-23 04:02:41 +00:00
|
|
|
|
## run_build.sh --- Travis CI File for Spacemacs
|
|
|
|
|
##
|
|
|
|
|
## Copyright (c) 2012-2014 Sylvain Benner
|
|
|
|
|
## Copyright (c) 2014-2015 Sylvain Benner & Contributors
|
|
|
|
|
##
|
|
|
|
|
## Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
|
## URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
|
##
|
|
|
|
|
## This file is not part of GNU Emacs.
|
|
|
|
|
##
|
|
|
|
|
## License: GPLv3
|
2015-07-31 08:30:42 +00:00
|
|
|
|
|
|
|
|
|
if [ $USER != "travis" ]; then
|
|
|
|
|
echo "This script is not designed to run locally."
|
|
|
|
|
echo "Instead, navigate to the appropriate test folder and run make there instead."
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2017-04-20 03:00:04 +00:00
|
|
|
|
# Make sure that PR doesn't target master branch
|
2016-03-07 09:50:29 +00:00
|
|
|
|
if [ $TRAVIS_SECURE_ENV_VARS = false ] &&
|
2017-02-23 22:18:38 +00:00
|
|
|
|
[ $TRAVIS_PULL_REQUEST != false ] &&
|
2017-04-29 09:00:22 +00:00
|
|
|
|
[ "$TRAVIS_BRANCH" = "master" ]; then
|
2017-02-23 22:18:38 +00:00
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
printf "\n し(*・∀・)/ Thanks for the contribution! \(・∀・*)ノ\n"
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
printf "\n( ^◡^)っ Please submit your pull request against the develop branch.\n"
|
|
|
|
|
echo "You can read the contribution guidelines at:"
|
|
|
|
|
echo "https://github.com/syl20bnr/spacemacs/blob/develop/CONTRIBUTING.org"
|
|
|
|
|
exit 1
|
2016-03-07 09:50:29 +00:00
|
|
|
|
fi
|
2017-05-21 17:58:07 +00:00
|
|
|
|
|
|
|
|
|
rm -rf ~/.emacs.d
|
|
|
|
|
mv "${TRAVIS_BUILD_DIR}" ~/.emacs.d
|
|
|
|
|
ln -sf ~/.emacs.d "${TRAVIS_BUILD_DIR}"
|
|
|
|
|
cd ~/.emacs.d
|
|
|
|
|
echo "Pwd $(pwd)"
|
|
|
|
|
|
2017-04-20 03:00:04 +00:00
|
|
|
|
# Formatting conventions tests
|
|
|
|
|
if [ ! -z "$FORMATTING" ]; then
|
2017-03-24 06:18:46 +00:00
|
|
|
|
echo "TRAVIS_COMMIT_RANGE: ${TRAVIS_COMMIT_RANGE}"
|
|
|
|
|
first_commit=`echo ${TRAVIS_COMMIT_RANGE} | sed -r 's/\..*//'`
|
2017-04-20 03:00:04 +00:00
|
|
|
|
git diff --name-only "${first_commit}" HEAD > /tmp/changed_files
|
|
|
|
|
case "${FORMATTING}" in
|
|
|
|
|
space-test)
|
|
|
|
|
echo "Testing for trailing and all sorts of broken white spaces"
|
|
|
|
|
git reset -q "${first_commit}"
|
2017-04-23 05:03:43 +00:00
|
|
|
|
git add -N .
|
2017-04-20 03:00:04 +00:00
|
|
|
|
git diff --check --color > space_test_result
|
|
|
|
|
if [[ -s space_test_result ]]; then
|
|
|
|
|
cat space_test_result
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
echo "No bad spaces detected"
|
|
|
|
|
exit 0
|
|
|
|
|
;;
|
|
|
|
|
spacefmt)
|
2017-04-22 14:12:40 +00:00
|
|
|
|
echo "Testing changed ORG files with spacefmt"
|
2017-04-20 03:00:04 +00:00
|
|
|
|
cp ~/.emacs.d/core/templates/.spacemacs.template ~/
|
|
|
|
|
mv ~/.spacemacs.template ~/.spacemacs
|
|
|
|
|
while read p
|
|
|
|
|
do
|
2017-04-26 13:50:19 +00:00
|
|
|
|
if [ -f "$p" ]; then
|
|
|
|
|
if [ ${p: -4} == ".org" ]; then
|
|
|
|
|
echo "Checking $p file"
|
|
|
|
|
./core/tools/spacefmt/spacefmt -f "$p"
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
echo "spacefmt failed"
|
|
|
|
|
exit 2
|
|
|
|
|
fi
|
2017-04-22 14:12:40 +00:00
|
|
|
|
fi
|
2017-04-20 03:00:04 +00:00
|
|
|
|
fi
|
|
|
|
|
done </tmp/changed_files
|
|
|
|
|
git diff --color HEAD > spacefmt_result
|
|
|
|
|
if [[ -s spacefmt_result ]]; then
|
2017-04-22 14:12:40 +00:00
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
printf "\nPLEASE APPLY CHANGES BELOW:\n"
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
echo
|
2017-04-20 03:00:04 +00:00
|
|
|
|
cat spacefmt_result
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
echo "All changed files comply with spacefmt"
|
|
|
|
|
exit 0
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2017-03-24 06:18:46 +00:00
|
|
|
|
fi
|
2017-04-22 11:59:55 +00:00
|
|
|
|
|
|
|
|
|
# If we are pushing changes to the master branch,
|
|
|
|
|
# open PR to syl20bnr/${PUBLISH} with Spacemacs
|
|
|
|
|
# documentation exported as HTML and formatted with spacefmt
|
2017-04-29 09:00:22 +00:00
|
|
|
|
if [ $TRAVIS_SECURE_ENV_VARS = true ] && [ ! -z "$PUBLISH" ] && [ $TRAVIS_PULL_REQUEST = false ]; then
|
|
|
|
|
if [ "$TRAVIS_BRANCH" = "master" ] && [ "$PUBLISH" != "spacemacs.org" ] ||
|
|
|
|
|
[ "$TRAVIS_BRANCH" = "develop" ] && [ "$PUBLISH" != "develop.spacemacs.org" ]; then
|
2017-04-29 15:33:47 +00:00
|
|
|
|
echo "branch is \"${TRAVIS_BRANCH}\", won't publish to \"${PUBLISH}\" repository!"
|
2017-04-29 09:00:22 +00:00
|
|
|
|
exit 0
|
|
|
|
|
fi
|
2017-04-22 11:59:55 +00:00
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
printf "\n FORMATTING DOCUMENTATION:\n"
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
echo
|
|
|
|
|
cp ~/.emacs.d/tests/doc/dotspacemacs.el ~/dotspacemacs.el
|
|
|
|
|
mv ~/dotspacemacs.el ~/.spacemacs
|
|
|
|
|
./core/tools/spacefmt/spacefmt doc
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
echo "spacefmt exited with: $?"
|
|
|
|
|
exit 2
|
|
|
|
|
fi
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
printf "\n EXPORTING DOCUMENTATION:\n"
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
echo
|
|
|
|
|
emacs -batch -l init.el > /dev/null 2>&1
|
|
|
|
|
emacs -batch -l init.el -l core/core-documentation.el -f spacemacs/publish-doc
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
echo "spacemacs/publish-doc failed"
|
|
|
|
|
exit 2
|
|
|
|
|
fi
|
|
|
|
|
git config --global user.name "${BOT_NAME}"
|
|
|
|
|
git config --global user.email "${BOT_EMAIL}"
|
|
|
|
|
git config --global push.default simple
|
|
|
|
|
git config --global hub.protocol https
|
|
|
|
|
export GITHUB_TOKEN=$BOT_TK
|
|
|
|
|
git clone "https://github.com/syl20bnr/${PUBLISH}.git" -b gh-pages "/tmp/${PUBLISH}"
|
|
|
|
|
rsync -avh ~/.emacs.d/export/ "/tmp/${PUBLISH}"
|
|
|
|
|
git add -N .
|
|
|
|
|
cd "/tmp/${PUBLISH}"
|
|
|
|
|
if ! git diff-files --quiet --; then
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
printf "\n COMMITTING CHANGES TO ${BOT_NAME}/${PUBLISH}:\n"
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
echo
|
|
|
|
|
git diff --color HEAD
|
|
|
|
|
curl -L https://github.com/github/hub/releases/download/v2.2.9/hub-linux-amd64-2.2.9.tgz | tar \
|
|
|
|
|
--strip-components=2 -xz --wildcards -C /tmp/ "*hub"
|
|
|
|
|
/tmp/hub add --all
|
|
|
|
|
/tmp/hub commit -m "doc update:$(date -u)"
|
|
|
|
|
/tmp/hub fork
|
|
|
|
|
mkdir -p ~/.ssh
|
|
|
|
|
printf "Host github.com\n StrictHostKeyChecking no\n UserKnownHostsFile=/dev/null\n" \
|
|
|
|
|
> ~/.ssh/config
|
|
|
|
|
git remote set-url "${BOT_NAME}" \
|
|
|
|
|
"https://${BOT_NAME}:${BOT_TK}@github.com/${BOT_NAME}/${PUBLISH}.git"
|
2017-05-04 04:53:54 +00:00
|
|
|
|
/tmp/hub push -f "${BOT_NAME}" gh-pages
|
2017-04-22 11:59:55 +00:00
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
printf "\n OPENING PR TO syl20bnr/${PUBLISH}.git\n"
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
echo
|
|
|
|
|
echo "Documentation updates (autoexport)" > msg
|
|
|
|
|
echo "beep beep boop... Beep?" >> msg
|
|
|
|
|
/tmp/hub pull-request -F msg
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
printf "\n DONE!\n"
|
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
echo
|
|
|
|
|
exit 0
|
|
|
|
|
else
|
|
|
|
|
printf '=%.0s' {1..70}
|
2017-04-25 15:42:58 +00:00
|
|
|
|
printf "\n NOTHING TO COMMIT!\n"
|
2017-04-22 11:59:55 +00:00
|
|
|
|
printf '=%.0s' {1..70}
|
|
|
|
|
echo
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
2017-03-24 06:18:46 +00:00
|
|
|
|
# Emacs tests
|
2017-04-18 20:08:02 +00:00
|
|
|
|
for test in "${TESTS[@]}"; do
|
2015-07-31 08:30:42 +00:00
|
|
|
|
rm -rf ~/.emacs.d/elpa
|
|
|
|
|
rm -rf ~/.emacs.d/.cache
|
2015-12-11 05:40:15 +00:00
|
|
|
|
rm -f ~/.spacemacs
|
2015-07-31 08:30:42 +00:00
|
|
|
|
|
|
|
|
|
testdir=~/.emacs.d/tests/$test
|
2015-12-11 05:40:15 +00:00
|
|
|
|
echo "Running '$test' in '$testdir' folder"
|
2015-07-31 08:30:42 +00:00
|
|
|
|
if [ -f $testdir/dotspacemacs.el ]; then
|
|
|
|
|
cp $testdir/dotspacemacs.el ~/.spacemacs
|
|
|
|
|
fi
|
2015-12-11 05:40:15 +00:00
|
|
|
|
cd $testdir && echo "Now in $(pwd)"
|
2015-07-31 08:30:42 +00:00
|
|
|
|
make test || exit 2
|
|
|
|
|
done
|