Skip to content

Commit

Permalink
Adding snowflake to travis (#41)
Browse files Browse the repository at this point in the history
* Adding snowflake to travis

* Typo and order

* More typos..
  • Loading branch information
Nyholm authored Jun 9, 2020
1 parent 9639019 commit ee48cda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ services:
- docker

env:
# Use Memcached first because it is really slow
# Some super slow extension first
- LAYER=imagick PHP="72 73 74"
- LAYER=memcached PHP="72 73 74"
# All layers in alphabetical order
- LAYER=amqp PHP="72 73 74"
Expand All @@ -17,8 +18,8 @@ env:
- LAYER=ds PHP="72 73 74"
- LAYER=gmp PHP="72 73 74"
- LAYER=igbinary PHP="72 73 74"
- LAYER=imagick PHP="72 73 74"
- LAYER=mailparse PHP="72 73 74"
- LAYER=odbc-snowflake PHP="72 73 74"
- LAYER=pcov PHP="72 73 74"
- LAYER=pgsql PHP="72 73 74"
- LAYER=xdebug PHP="72 73 74"
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ publish: layers
php ./bref-extra publish
php ./bref-extra list

# Publish doocker images
# Publish docker images
publish-docker-images: docker-images
for dir in layers/${layer}; do \
for php_version in $(php_versions); do \
Expand All @@ -56,7 +56,7 @@ publish-docker-images: docker-images
docker tag $$privateImage:latest $$publicImage:latest ; \
docker push $$publicImage:latest; \
if (test $(DOCKER_TAG)); then \
echo "Pusing tagged images"; \
echo "Pushing tagged images"; \
docker tag $$privateImage:latest $$publicImage:${DOCKER_TAG}; \
docker push $$publicImage:${DOCKER_TAG}; \
fi; \
Expand Down

0 comments on commit ee48cda

Please sign in to comment.