Merge pull request #89 from CartoDB/check-up-to-date-with-master

Check up to date with master
This commit is contained in:
Rafa de la Torre 2016-08-09 16:01:59 +02:00 committed by GitHub
commit b5c3e73bc0
2 changed files with 20 additions and 4 deletions

View File

@ -1,6 +1,7 @@
language: c
before_install:
- ./check-up-to-date-with-master.sh
- sudo apt-get -y install python-pip
- sudo apt-get -y install python-software-properties
@ -44,9 +45,8 @@ before_install:
| sudo tee /etc/postgresql/9.5/main/pg_hba.conf
- sudo /etc/init.d/postgresql restart 9.5
# save the postgres port for later usage
- sudo cat /etc/postgresql/9.5/main/postgresql.conf | grep ^port | grep -oh '[0-9]*' > .pg95.port
install:
- sudo make install
script:
- sudo make install
- PGPORT=$(cat .pg95.port) make test || { cat src/pg/test/regression.diffs; false; }
- make test || { cat src/pg/test/regression.diffs; false; }

16
check-up-to-date-with-master.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
# Add remote-master
git remote add -t master remote-master https://github.com/CartoDB/crankshaft.git
# Fetch master reference
git fetch --depth=1 remote-master master
# Compare HEAD with master
# NOTE: travis by default uses --depth=50 so we are actually checking that the tip
# of the branch is no more than 50 commits away from master as well.
git rev-list HEAD | grep $(git rev-parse remote-master/master) ||
{ echo "Your branch is not up to date with latest release";
echo "Please update it by running the following:";
echo " git fetch && git merge origin/develop";
false; }