Skip to content

Commit

Permalink
Merge branch 'release/0.4.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmp85 committed Aug 19, 2016
2 parents f7a7f7d + 97fc3b5 commit 064fb1c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### citustools v0.4.1 (August 19, 2016) ###

* Multi test now requires args rather than using hardcoded targets

### citustools v0.4.0 (August 2, 2016) ###

* Adds Travis script to alleviate uncrustify installation
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/citustools.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ def message
class Citustools < Formula
desc "Tools and config used in Citus Data projects."
homepage "https://github.com/citusdata/tools"
url "https://github.com/citusdata/tools/archive/v0.3.3.tar.gz"
sha256 "5133115602299c66be2a78bcc4ccba45e56c42a989d302c21de729d79d39805b"
url "https://github.com/citusdata/tools/archive/v0.4.0.tar.gz"
sha256 "97ee8978eba59abf517af480880387709a116e76de00fbd5004778342cf462e1"

depends_on "uncrustify"
depends_on Docker
Expand Down
10 changes: 8 additions & 2 deletions travis/pg_travis_multi_test
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

set -eux

badusage=64

if [ "$#" -eq 0 ]; then
echo "$0: you must specify test targets" >&2
exit $noinput
fi

status=0
testtargets="check-multi check-multi-fdw check-worker"
testtargets="${testtargets} $*"
testtargets="$*"

# Configure, build, and install extension
./configure PG_CONFIG=/usr/lib/postgresql/$PGVERSION/bin/pg_config
Expand Down

0 comments on commit 064fb1c

Please sign in to comment.