Skip to content

Commit e9f996a

Browse files
committed
update pgTap to v0.95.0
1 parent 0bbdcd9 commit e9f996a

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

Dockerfile

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,17 @@ RUN cd /tmp && git clone -b $PLV8_BRANCH https://github.com/plv8/plv8.git \
1212
&& cd /tmp/plv8 \
1313
&& make all install
1414

15-
# install pgTap and pg_prove
15+
# install pg_prove
1616
RUN curl -LO http://xrl.us/cpanm \
1717
&& chmod +x cpanm \
18-
&& ./cpanm TAP::Parser::SourceHandler::pgTAP \
19-
&& git clone git://github.com/theory/pgtap.git \
20-
&& cd pgtap && make
18+
&& ./cpanm TAP::Parser::SourceHandler::pgTAP
19+
20+
21+
# install pgtap
22+
ENV PGTAP_VERSION v0.95.0
23+
RUN git clone git://github.com/theory/pgtap.git \
24+
&& cd pgtap && git checkout tags/$PGTAP_VERSION \
25+
&& make
2126

2227
ADD ./test.sh /test.sh
2328
RUN chmod +x /test.sh

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
NAME = walm/pgtap
1+
NAME = walm/pgtap:0.95.0
22

33
all: build
44

0 commit comments

Comments
 (0)