Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Burak Yucesoy committed Aug 18, 2019
2 parents 003fc56 + ecf2ddf commit 948a9b9
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### citustools v0.7.11 (Aughust 18, 2019) ###

* Bump Homebrew formula

* Update couple of uncrustify settings

* Update alpine dockerfiles

* Use Microsoft mails for Valgrind test results

### citustools v0.7.10 (May 28, 2019) ###

* Add custom branch support for valgrind tests
Expand Down
4 changes: 4 additions & 0 deletions automated_packaging/update_docker.pl
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
`sed -i 's/VERSION=[[:digit:]]*.[[:digit:]]*.[[:digit:]]*/VERSION=$VERSION/g' Dockerfile`;
`sed -i 's/PG_MAJOR-citus-[[:digit:]]*.[[:digit:]]*/PG_MAJOR-citus-$minor_version/g' Dockerfile`;

# Update citus version on alpine Dockerfile
`sed -i 's/VERSION=[[:digit:]]*.[[:digit:]]*.[[:digit:]]*/VERSION=$VERSION/g' Dockerfile-alpine`;
`sed -i 's/PG_MAJOR-citus-[[:digit:]]*.[[:digit:]]*/PG_MAJOR-citus-$minor_version/g' Dockerfile-alpine`;

# Update citus version on docker-compose
`sed -i 's/citus:[[:digit:]]*.[[:digit:]]*.[[:digit:]]*/citus:$VERSION/g' docker-compose.yml`;

Expand Down
4 changes: 2 additions & 2 deletions uncrustify/citus-style.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -784,8 +784,8 @@ align_with_tabs = false # false/true
# Whether to bump out to the next tab when aligning
align_on_tabstop = false # false/true

# Whether to left-align numbers
align_number_left = false # false/true
# Whether to right-align numbers
align_number_right = false # false/true

# Whether to keep whitespace not required for alignment.
align_keep_extra_space = false # false/true
Expand Down
6 changes: 3 additions & 3 deletions uncrustify/citus_indent
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
my ($quiet, $check, $diff);
exit 64 unless GetOptions ('quiet' => \$quiet, 'check' => \$check, 'diff' => \$diff);

my $null_delimited_triples = ($diff ?
`git diff --cached --name-only -z | git check-attr --stdin -z citus-style` :
my $null_delimited_triples = ($diff ?
`git diff --cached --name-only --diff-filter=ACMR -z | git check-attr --stdin -z citus-style` :
`git ls-files -z | git check-attr --stdin -z citus-style`
);
my @flattened_triples = split(/\x00/, $null_delimited_triples);
Expand All @@ -36,7 +36,7 @@ while(my ($filename, $attrname, $attrvalue) = splice(@flattened_triples, 0, 3))

# untaint filename and error if '..' is present
if ($filename =~ /^(.*(?!\.\.)$)/) {
push @files_to_format, $1;
push @files_to_format, $1;
} else {
die "illegal filename\n";
}
Expand Down
8 changes: 7 additions & 1 deletion valgrind/launch-test-instance
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

set -euo pipefail

REPORT_EMAIL=${REPORT_EMAIL:-burak@citusdata.com metin@citusdata.com furkan@citusdata.com}
REPORT_EMAIL=${REPORT_EMAIL:-burak@citusdata.com \
furkan@citusdata.com \
metin@citusdata.com \
Burak.Yucesoy@microsoft.com \
Furkan.Sahin@microsoft.com \
Hanefi.Onaldi@microsoft.com \
Metin.Doslu@microsoft.com }
POSTGRES_GITREF=${POSTGRES_GITREF:-REL_11_STABLE}
CITUS_GITREF=${CITUS_GITREF:-master}

Expand Down
8 changes: 7 additions & 1 deletion valgrind/run-valgrind-tests
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

set -euo pipefail

REPORT_EMAIL=${REPORT_EMAIL:-burak@citusdata.com metin@citusdata.com furkan@citusdata.com}
REPORT_EMAIL=${REPORT_EMAIL:-burak@citusdata.com \
furkan@citusdata.com \
metin@citusdata.com \
Burak.Yucesoy@microsoft.com \
Furkan.Sahin@microsoft.com \
Hanefi.Onaldi@microsoft.com \
Metin.Doslu@microsoft.com }
CITUS_GITREF=${CITUS_GITREF:-master}
POSTGRES_GITREF=${POSTGRES_GITREF:-REL_11_STABLE}

Expand Down

0 comments on commit 948a9b9

Please sign in to comment.