From ee48cda2e08ad1cfdd8f3806edcf55d7445ef437 Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Tue, 9 Jun 2020 16:42:25 +0200 Subject: [PATCH] Adding snowflake to travis (#41) * Adding snowflake to travis * Typo and order * More typos.. --- .travis.yml | 5 +++-- Makefile | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f209df70..56d4d090 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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" @@ -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" diff --git a/Makefile b/Makefile index 5c20a89d..cee6371b 100644 --- a/Makefile +++ b/Makefile @@ -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 \ @@ -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; \