From 7a73e39b22c3251f8aabba37a8c3e0a2c2bd75b2 Mon Sep 17 00:00:00 2001 From: Ben Batschelet Date: Thu, 8 Oct 2020 18:11:59 -0500 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 51f4778e68..aefc9c0d85 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Magento Commerce Cloud Deployment Tools +# Magento Commerce Cloud Deployment Tools - TEST [![Build Status](https://travis-ci.com/magento/ece-tools.svg?token=NW7M5gDP5YaRMZyCvYpY&branch=develop)](https://travis-ci.com/magento/ece-tools) ## Welcome From f1edb5a1f62fe0387517628b3b532cb2e0d9c20d Mon Sep 17 00:00:00 2001 From: Ben Batschelet Date: Thu, 8 Oct 2020 18:17:52 -0500 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aefc9c0d85..bdaad92f6d 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Magento Commerce Cloud Deployment Tools - TEST +# Magento Commerce Cloud Deployment Tools - TEST 2 [![Build Status](https://travis-ci.com/magento/ece-tools.svg?token=NW7M5gDP5YaRMZyCvYpY&branch=develop)](https://travis-ci.com/magento/ece-tools) ## Welcome From f49670ef5ad394c768117e1c2c0e6b03e35a7507 Mon Sep 17 00:00:00 2001 From: Ben Batschelet Date: Thu, 8 Oct 2020 18:46:06 -0500 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bdaad92f6d..f490dd6a0c 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Magento Commerce Cloud Deployment Tools - TEST 2 +# Magento Commerce Cloud Deployment Tools - TEST 3 [![Build Status](https://travis-ci.com/magento/ece-tools.svg?token=NW7M5gDP5YaRMZyCvYpY&branch=develop)](https://travis-ci.com/magento/ece-tools) ## Welcome From 5a14f02191233c548ebeba8fef377f878d58bbea Mon Sep 17 00:00:00 2001 From: Ben Batschelet Date: Tue, 10 Nov 2020 10:53:51 -0600 Subject: [PATCH 4/4] Delete Travis config --- .travis.yml | 66 ----------------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8aa596c185..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,66 +0,0 @@ -dist: bionic - -addons: - hosts: - - magento2.docker - -git: - depth: false - -services: - - docker - -language: php -php: - - '7.1' - - '7.2' - - '7.3' - - '7.4' - -env: - - TEST_SUITE=functional-ce - - TEST_SUITE=functional-ee FUNCTIONAL_INDEX=1 - - TEST_SUITE=functional-ee FUNCTIONAL_INDEX=2 - - TEST_SUITE=functional-ee FUNCTIONAL_INDEX=3 - - TEST_SUITE=functional-ee FUNCTIONAL_INDEX=4 - - TEST_SUITE=functional-ee FUNCTIONAL_INDEX=5 - - TEST_SUITE=functional-ee FUNCTIONAL_INDEX=6 - -stages: - - test - -jobs: - exclude: - - php: '7.1' - env: TEST_SUITE=functional-ee - - - php: '7.2' - env: TEST_SUITE=functional-ee - - - php: '7.3' - env: TEST_SUITE=functional-ee - - - php: '7.4' - env: TEST_SUITE=functional-ee - -before_install: -# https://github.com/kylekatarnls/update-helper/issues/9 - - if [ -n "${COMPOSER_VERSION}" ]; then travis_retry composer self-update ${COMPOSER_VERSION}; fi; - - -install: - - phpenv config-add travis.php.ini - - composer config http-basic.repo.magento.com ${REPO_USERNAME_CE} ${REPO_PASSWORD_CE} - - composer config github-oauth.github.com ${GITHUB_TOKEN} - - if [ -n "${MCC_VERSION}" ]; then composer config repositories.mcc git git@github.com:magento/magento-cloud-components.git && composer require "magento/magento-cloud-components:${MCC_VERSION}" --no-update; fi; - - if [ -n "${MCD_VERSION}" ]; then composer config repositories.mcd git git@github.com:magento/magento-cloud-docker.git && composer require "magento/magento-cloud-docker:${MCD_VERSION}" --no-update; fi; - - if [ -n "${MCP_VERSION}" ]; then composer config repositories.mcp git git@github.com:magento/magento-cloud-patches.git && composer require "magento/magento-cloud-patches:${MCP_VERSION}" --no-update; fi; - - if [ -n "${MQP_VERSION}" ]; then composer config repositories.mqp git git@github.com:magento/quality-patches.git && composer require "magento/quality-patches:${MQP_VERSION}" --no-update; fi; - - composer update -n --no-suggest - -before_script: - - if [ $TEST_SUITE == "functional-ce" ]; then cp codeception.dist.yml codeception.yml && sed -i "s/REPO_USERNAME/REPO_USERNAME_CE/" codeception.yml && sed -i "s/REPO_PASSWORD/REPO_PASSWORD_CE/" codeception.yml; fi; - -script: - - if [ $TEST_SUITE == "functional-ce" ]; then ./tests/travis/functional_ce.sh; fi; - - if [ $TEST_SUITE == "functional-ee" ] && [ $TRAVIS_SECURE_ENV_VARS == "true" ]; then ./tests/travis/prepare_functional_parallel.sh && ./tests/travis/functional_ee.sh; fi;