Skip to content

Commit b5dcf24

Browse files
author
Michael Klishin
committed
Trying to work around issues that fail travis CI
403 responses from GitHub
1 parent a1b5065 commit b5dcf24

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

Makefile

+11-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ all:
3131
# make
3232
# make install
3333
#
34-
setup: dotnet/.ok erlang/.ok java/.ok python/.ok php/.ok ruby-amqp/.ok ruby/.ok python-puka/.ok perl/.ok clojure/.ok
34+
setup: dotnet/.ok erlang/.ok java/.ok python/.ok php/.ok ruby-amqp/.ok ruby/.ok python-puka/.ok perl/.ok clojure/.ok scala/.ok
3535

3636
setup-travisci: dotnet/.ok erlang/.ok java/.ok python/.ok ruby/.ok php/.ok clojure/.ok
3737

@@ -104,7 +104,7 @@ php/.ok:
104104
(cd php && \
105105
mkdir -p ./bin && \
106106
curl -sS https://getcomposer.org/installer | php -- --install-dir=bin && \
107-
php ./bin/composer.phar install && \
107+
php ./bin/composer.phar install --prefer-source && \
108108
touch .ok)
109109
clean::
110110
(cd php && \
@@ -155,3 +155,12 @@ clojure/.ok:
155155
clean::
156156
(cd clojure && \
157157
rm -rf .ok bin/*)
158+
159+
go/.ok:
160+
(cd go && \
161+
go get https://github.com/streadway/amqp && \
162+
touch .ok)
163+
164+
clean::
165+
(cd go && \
166+
rm -rf .ok)

0 commit comments

Comments
 (0)