From e273d730ef0379af4ef5831db78c07cc09e09af7 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Tue, 9 Oct 2018 22:02:35 +0000 Subject: [PATCH 01/35] trigger build --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0d3e558a..217f5625 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: ruby -#rvm: -# - 2.3.1 +rvm: + - 2.3.1 #before_install: gem install bundler -v 1.10.6 #install: #- bundle install From 038071195e272065c529369fe4a45a0def275601 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Tue, 9 Oct 2018 22:18:43 +0000 Subject: [PATCH 02/35] a --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 217f5625..0d3e558a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: ruby -rvm: - - 2.3.1 +#rvm: +# - 2.3.1 #before_install: gem install bundler -v 1.10.6 #install: #- bundle install From 1dd619832ea81743278377a1219d60966489f7ad Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Tue, 9 Oct 2018 22:30:58 +0000 Subject: [PATCH 03/35] deep_merge doesnt work --- ci/trigger_build.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index 4ea5d0fe..35d48daa 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -11,11 +11,21 @@ body=$(cat < Date: Tue, 9 Oct 2018 22:38:02 +0000 Subject: [PATCH 04/35] debugging "Sorry, we experienced an error" --- ci/trigger_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index 35d48daa..ff0324a4 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -e +set -ex repo_slug=$1 From 45eb16bb8ccf35799f96bebdb075bb38cf646c5b Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Tue, 9 Oct 2018 23:14:51 +0000 Subject: [PATCH 05/35] holy cow misplaced comma --- ci/trigger_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index ff0324a4..09ab86af 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -25,9 +25,9 @@ body=$(cat < Date: Tue, 9 Oct 2018 23:25:29 +0000 Subject: [PATCH 06/35] parametrize SDK again --- .travis.yml | 2 +- ci/trigger_build.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0d3e558a..0614e644 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,5 +10,5 @@ addons: # srcclr: true script: # - "rake spec" - - "ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" + - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" #after_success: "coveralls" diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index 09ab86af..2038285e 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -26,8 +26,8 @@ body=$(cat < Date: Tue, 9 Oct 2018 23:32:00 +0000 Subject: [PATCH 07/35] trying deep_merge again --- ci/trigger_build.sh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index 2038285e..f6b4a4b7 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -11,21 +11,11 @@ body=$(cat < Date: Tue, 9 Oct 2018 23:51:51 +0000 Subject: [PATCH 08/35] a --- ci/trigger_build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index f6b4a4b7..0c9b869d 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -ex +set -e repo_slug=$1 @@ -20,8 +20,8 @@ body=$(cat < Date: Tue, 9 Oct 2018 23:59:58 +0000 Subject: [PATCH 09/35] debugging missing variables --- ci/trigger_build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index 0c9b869d..167fe91e 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -4,6 +4,9 @@ set -e repo_slug=$1 +echo "${TRAVIS_PULL_REQUEST_SHA}" +echo "${TRAVIS_PULL_REQUEST_SLUG}" + body=$(cat < Date: Wed, 10 Oct 2018 10:17:12 -0700 Subject: [PATCH 10/35] prevent double runs --- ci/trigger_build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index 167fe91e..e9ada44d 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -20,6 +20,8 @@ body=$(cat < Date: Wed, 10 Oct 2018 10:28:24 -0700 Subject: [PATCH 11/35] make build fail if curl receives malformed payload --- ci/trigger_build.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index e9ada44d..ad633bdf 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -19,7 +19,7 @@ body=$(cat < Date: Wed, 10 Oct 2018 11:42:54 -0700 Subject: [PATCH 12/35] looking for env vars with missing values --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 0614e644..0db88022 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,5 +10,6 @@ addons: # srcclr: true script: # - "rake spec" + - printenv | grep TRAVIS - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" #after_success: "coveralls" From 0b94aed6a60f13e761bcaa8e2d3071fe8363518d Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Wed, 10 Oct 2018 14:00:49 -0700 Subject: [PATCH 13/35] understanding why theres two travis builds --- ci/trigger_build.sh | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index ad633bdf..39b55bc4 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -4,8 +4,19 @@ set -e repo_slug=$1 -echo "${TRAVIS_PULL_REQUEST_SHA}" -echo "${TRAVIS_PULL_REQUEST_SLUG}" +# why travis creates two builds for every commit push: +# https://stackoverflow.com/questions/34974925/travis-ci-creates-two-builds-for-each-github-commit-push +# +# one build is event type "push", the other is event type "pull request" we can only use the latter type +if [ "$TRAVIS_EVENT_TYPE" == "push" ]; then + echo "push events do not set values for TRAVIS_PULL_REQUEST_SHA or TRAVIS_PULL_REQUEST_SLUG so there's no point triggering build without these values" + exit 1 +elif [ "$TRAVIS_EVENT_TYPE" == "pull_request" ]; then + echo "pull_request event detected. continuing..." +else + echo "i do not understand TRAVIS_EVENT_TYPE=$TRAVIS_EVENT_TYPE" + exit 2 +fi body=$(cat < Date: Wed, 10 Oct 2018 14:12:25 -0700 Subject: [PATCH 14/35] clean up --- .travis.yml | 1 - ci/trigger_build.sh | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0db88022..0614e644 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,5 @@ addons: # srcclr: true script: # - "rake spec" - - printenv | grep TRAVIS - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" #after_success: "coveralls" diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index 39b55bc4..0ca8a2c0 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -10,7 +10,9 @@ repo_slug=$1 # one build is event type "push", the other is event type "pull request" we can only use the latter type if [ "$TRAVIS_EVENT_TYPE" == "push" ]; then echo "push events do not set values for TRAVIS_PULL_REQUEST_SHA or TRAVIS_PULL_REQUEST_SLUG so there's no point triggering build without these values" - exit 1 + echo "i will exit 0 since this is technically not an error but i will stop here since i cannot continue. the next travis job should be a pull_request" + echo "type, we'll be using that" + exit 0 elif [ "$TRAVIS_EVENT_TYPE" == "pull_request" ]; then echo "pull_request event detected. continuing..." else From b0a9b6c911662958c63c368e542b321ec4a2e1d8 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Wed, 10 Oct 2018 14:28:00 -0700 Subject: [PATCH 15/35] cleanup --- ci/trigger_build.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index 0ca8a2c0..ae6bb58d 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -9,14 +9,13 @@ repo_slug=$1 # # one build is event type "push", the other is event type "pull request" we can only use the latter type if [ "$TRAVIS_EVENT_TYPE" == "push" ]; then - echo "push events do not set values for TRAVIS_PULL_REQUEST_SHA or TRAVIS_PULL_REQUEST_SLUG so there's no point triggering build without these values" - echo "i will exit 0 since this is technically not an error but i will stop here since i cannot continue. the next travis job should be a pull_request" - echo "type, we'll be using that" + echo "INFO: TRAVIS_EVENT_TYPE=push so TRAVIS_PULL_REQUEST_SHA and TRAVIS_PULL_REQUEST_SLUG are empty." + echo "INFO: without these values, this is going to be a noop (build wont be triggered)" exit 0 elif [ "$TRAVIS_EVENT_TYPE" == "pull_request" ]; then - echo "pull_request event detected. continuing..." + echo "INFO: TRAVIS_EVENT_TYPE=pull_request. Triggering build..." else - echo "i do not understand TRAVIS_EVENT_TYPE=$TRAVIS_EVENT_TYPE" + echo "ERROR: i do not understand TRAVIS_EVENT_TYPE=$TRAVIS_EVENT_TYPE" exit 2 fi @@ -60,5 +59,6 @@ output=$(curl -s -X POST \ ) if [[ "$output" == *"error"* ]]; then + echo "ERROR: curl did not succeed" exit 1 fi From fc7534359c71d6b5d5ed82f74691ce73060885bd Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Wed, 10 Oct 2018 14:54:59 -0700 Subject: [PATCH 16/35] testing for failure --- ci/trigger_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index ae6bb58d..bf106c64 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -34,7 +34,7 @@ body=$(cat < Date: Wed, 10 Oct 2018 15:27:48 -0700 Subject: [PATCH 17/35] failure case works --- ci/trigger_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index bf106c64..ae6bb58d 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -34,7 +34,7 @@ body=$(cat < Date: Thu, 11 Oct 2018 09:45:14 -0700 Subject: [PATCH 18/35] adapt to changes in fullstack --- ci/trigger_build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index ae6bb58d..c54715ee 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -31,14 +31,14 @@ body=$(cat < Date: Thu, 11 Oct 2018 13:08:29 -0700 Subject: [PATCH 19/35] a --- ci/trigger_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index c54715ee..1e1bbc3c 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -38,7 +38,7 @@ body=$(cat < Date: Thu, 11 Oct 2018 13:31:11 -0700 Subject: [PATCH 20/35] a --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0614e644..353880b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ language: ruby #- bundle install #- bundle exec rake install #before_script: "rubocop" -addons: +#addons: # srcclr: true script: # - "rake spec" From c78230d6f817cbe3ed540a1db9cbf4c0a84ceda6 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Thu, 11 Oct 2018 13:39:43 -0700 Subject: [PATCH 21/35] HELLO should show --- ci/trigger_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh index 1e1bbc3c..c54715ee 100755 --- a/ci/trigger_build.sh +++ b/ci/trigger_build.sh @@ -38,7 +38,7 @@ body=$(cat < Date: Thu, 11 Oct 2018 14:13:09 -0700 Subject: [PATCH 22/35] attempt to store ci scripts in a common repo --- .travis.yml | 1 + ci/trigger_build.sh | 64 --------------------------------------------- 2 files changed, 1 insertion(+), 64 deletions(-) delete mode 100755 ci/trigger_build.sh diff --git a/.travis.yml b/.travis.yml index 353880b0..b448b387 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,5 +10,6 @@ language: ruby # srcclr: true script: # - "rake spec" + - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" #after_success: "coveralls" diff --git a/ci/trigger_build.sh b/ci/trigger_build.sh deleted file mode 100755 index c54715ee..00000000 --- a/ci/trigger_build.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/env bash - -set -e - -repo_slug=$1 - -# why travis creates two builds for every commit push: -# https://stackoverflow.com/questions/34974925/travis-ci-creates-two-builds-for-each-github-commit-push -# -# one build is event type "push", the other is event type "pull request" we can only use the latter type -if [ "$TRAVIS_EVENT_TYPE" == "push" ]; then - echo "INFO: TRAVIS_EVENT_TYPE=push so TRAVIS_PULL_REQUEST_SHA and TRAVIS_PULL_REQUEST_SLUG are empty." - echo "INFO: without these values, this is going to be a noop (build wont be triggered)" - exit 0 -elif [ "$TRAVIS_EVENT_TYPE" == "pull_request" ]; then - echo "INFO: TRAVIS_EVENT_TYPE=pull_request. Triggering build..." -else - echo "ERROR: i do not understand TRAVIS_EVENT_TYPE=$TRAVIS_EVENT_TYPE" - exit 2 -fi - -body=$(cat < Date: Thu, 11 Oct 2018 14:35:11 -0700 Subject: [PATCH 23/35] test extra_vars --- .travis.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index b448b387..499e0c4e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,15 @@ language: ruby -#rvm: -# - 2.3.1 -#before_install: gem install bundler -v 1.10.6 -#install: - #- bundle install - #- bundle exec rake install -#before_script: "rubocop" -#addons: -# srcclr: true +rvm: + - 2.3.1 +before_install: gem install bundler -v 1.10.6 +install: + - bundle install + - bundle exec rake install +before_script: "rubocop" +addons: + srcclr: true script: # - "rake spec" - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" -#after_success: "coveralls" +after_success: "coveralls" From e55b3aa18adef1a4a15267ecbbe9df3a9d20c633 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Thu, 11 Oct 2018 15:56:31 -0700 Subject: [PATCH 24/35] less changes = better --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 499e0c4e..19bf1541 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ before_script: "rubocop" addons: srcclr: true script: - # - "rake spec" + - "rake spec" - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" after_success: "coveralls" From 9627ec50d0b8c9b6947a3063a9bf82ed125bfd34 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Fri, 12 Oct 2018 10:20:56 -0700 Subject: [PATCH 25/35] trigger build --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 19bf1541..ac9a70ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,3 +13,4 @@ script: - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" after_success: "coveralls" + From 86969b343d3569e9c5db39448d242e07b43ee1d3 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Fri, 12 Oct 2018 10:26:02 -0700 Subject: [PATCH 26/35] onemore time --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ac9a70ca..19bf1541 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,3 @@ script: - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" after_success: "coveralls" - From 637792ce7b1331758105a75f67d99ff95778f225 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Fri, 12 Oct 2018 13:29:36 -0700 Subject: [PATCH 27/35] a --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 19bf1541..ac9a70ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,3 +13,4 @@ script: - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" after_success: "coveralls" + From 62d2f670d5ab9d3c956c40afa0a932637731f666 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Fri, 12 Oct 2018 13:33:27 -0700 Subject: [PATCH 28/35] a --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ac9a70ca..19bf1541 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,3 @@ script: - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" after_success: "coveralls" - From 8de82716694cec0257e1f8a2d3b4b11dd614cc66 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Wed, 17 Oct 2018 16:51:25 -0700 Subject: [PATCH 29/35] a --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 19bf1541..ac9a70ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,3 +13,4 @@ script: - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" after_success: "coveralls" + From 75b51184970b7e08d6e646b614ec7837f254985f Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Fri, 9 Nov 2018 14:08:52 -0800 Subject: [PATCH 30/35] a --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ac9a70ca..19bf1541 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,3 @@ script: - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" after_success: "coveralls" - From 4dae7bf604e0d95c38026b8eaef9995d8f1446b7 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Mon, 12 Nov 2018 21:28:22 -0800 Subject: [PATCH 31/35] a --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 19bf1541..88d96914 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,4 +12,4 @@ script: - "rake spec" - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" -after_success: "coveralls" +#after_success: "coveralls" From 42aec0417a55c987b583e4bab3fc7ef375ec54b7 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Tue, 13 Nov 2018 10:42:26 -0800 Subject: [PATCH 32/35] a --- .travis.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 88d96914..85fee1b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,15 @@ language: ruby rvm: - 2.3.1 -before_install: gem install bundler -v 1.10.6 -install: - - bundle install - - bundle exec rake install -before_script: "rubocop" -addons: - srcclr: true +#before_install: gem install bundler -v 1.10.6 +#install: +# - bundle install +# - bundle exec rake install +#before_script: "rubocop" +#addons: +# srcclr: true script: - - "rake spec" +# - "rake spec" - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" #after_success: "coveralls" From 0919b206279474b63cdfedf671d540b095851be4 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Tue, 13 Nov 2018 10:46:07 -0800 Subject: [PATCH 33/35] a --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 85fee1b2..83467953 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: ruby -rvm: - - 2.3.1 +#rvm: +# - 2.3.1 #before_install: gem install bundler -v 1.10.6 #install: # - bundle install From 0818479c29358cd7ebb3f63ead652657bd49a170 Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Tue, 13 Nov 2018 10:54:31 -0800 Subject: [PATCH 34/35] a --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 83467953..14537062 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,3 +13,4 @@ script: - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" #after_success: "coveralls" +# From 1eaaa3751f7502785fd076e8c207a29f5e95d93d Mon Sep 17 00:00:00 2001 From: Juan Carlos Tong Date: Thu, 15 Nov 2018 13:36:51 -0800 Subject: [PATCH 35/35] aaaaaaaaa --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 14537062..83467953 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,3 @@ script: - git clone https://github.com/juancarlostong/ci.git - "SDK=ruby ci/trigger_build.sh optimizely%2Ffullstack-sdk-compatibility-suite" #after_success: "coveralls" -#