From 94ddf7169175e3af87337360136023fa93ef3ce8 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 30 Jul 2014 10:01:47 +0530 Subject: [PATCH 01/60] [skip ci] --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 8163678..273417e 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,10 +1,10 @@ language: php php: - - 5.3 + #- 5.3 - 5.4 - - 5.5 - - 5.6 + #- 5.5 + #- 5.6 before_script: - mkdir -p shippable/codecoverage From c8498fdb11cec5fb3d0577a917157e37195594d5 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 30 Jul 2014 10:02:29 +0530 Subject: [PATCH 02/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index fdcd534..524df5f 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -17,7 +17,7 @@ public function testAdd(){ public function testSubtract(){ $calc = new Calculator(); $difference = $calc->subtract(5,2); - $this->assertEquals(3, $difference); //check if 5 - 2 is equal to 3 + $this->assertEquals(4, $difference); //check if 5 - 2 is equal to 3 } //test if the multiply() method in our calculator class From 04c45bbbd8a041a7d948f77e261a058c390872de Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 30 Jul 2014 10:06:12 +0530 Subject: [PATCH 03/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index 524df5f..fdcd534 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -17,7 +17,7 @@ public function testAdd(){ public function testSubtract(){ $calc = new Calculator(); $difference = $calc->subtract(5,2); - $this->assertEquals(4, $difference); //check if 5 - 2 is equal to 3 + $this->assertEquals(3, $difference); //check if 5 - 2 is equal to 3 } //test if the multiply() method in our calculator class From 90b7ae2e2ac7298b205d8afb8e7b8f041c62270e Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 30 Jul 2014 10:24:06 +0530 Subject: [PATCH 04/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index fdcd534..73cbbf1 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(14, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(15, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class From 1ddc8b57a5b47510f7712e0075463aefb352ea1f Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 30 Jul 2014 11:36:48 +0530 Subject: [PATCH 05/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index 73cbbf1..060e076 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -17,7 +17,7 @@ public function testAdd(){ public function testSubtract(){ $calc = new Calculator(); $difference = $calc->subtract(5,2); - $this->assertEquals(3, $difference); //check if 5 - 2 is equal to 3 + $this->assertEquals(4, $difference); //check if 5 - 2 is equal to 3 } //test if the multiply() method in our calculator class From 30c58493b0c027b56e0bca149279b8e83023e0b6 Mon Sep 17 00:00:00 2001 From: vidyaraghav Date: Wed, 30 Jul 2014 14:21:25 +0530 Subject: [PATCH 06/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index 060e076..71f6664 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(15, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(16, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class From e659212b9df0597b7f129f670fe01c577b79f869 Mon Sep 17 00:00:00 2001 From: vidyaraghav Date: Wed, 30 Jul 2014 14:24:55 +0530 Subject: [PATCH 07/60] [skip ci] --- tests/calculator_test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index 71f6664..fdcd534 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(16, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(14, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class @@ -17,7 +17,7 @@ public function testAdd(){ public function testSubtract(){ $calc = new Calculator(); $difference = $calc->subtract(5,2); - $this->assertEquals(4, $difference); //check if 5 - 2 is equal to 3 + $this->assertEquals(3, $difference); //check if 5 - 2 is equal to 3 } //test if the multiply() method in our calculator class From ac314412d6b6ed93bc4b24c7629e040b3f89af9d Mon Sep 17 00:00:00 2001 From: vidyaraghav Date: Wed, 30 Jul 2014 14:27:15 +0530 Subject: [PATCH 08/60] [skip ci] --- calculator.php | 1 + 1 file changed, 1 insertion(+) diff --git a/calculator.php b/calculator.php index 1011055..6147ffd 100644 --- a/calculator.php +++ b/calculator.php @@ -9,6 +9,7 @@ public function add($numbers_to_add){ return $sum; } + public function subtract($x, $y){ return $x - $y; } From d7501f6075cd07450d560c5cd890fd140dafb81b Mon Sep 17 00:00:00 2001 From: vidyaraghav Date: Wed, 30 Jul 2014 14:28:40 +0530 Subject: [PATCH 09/60] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 273417e..90344a4 100644 --- a/shippable.yml +++ b/shippable.yml @@ -16,6 +16,7 @@ script: notifications: email: false + after_script: #php-mongo From 2a2c276637dad69ff7de6327435b3a79a716c333 Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 15 Sep 2014 13:02:04 +0530 Subject: [PATCH 10/60] Update shippable.yml --- shippable.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 90344a4..52fad4c 100644 --- a/shippable.yml +++ b/shippable.yml @@ -13,9 +13,7 @@ before_script: script: - phpunit --log-junit shippable/testresults/junit.xml --coverage-xml shippable/codecoverage tests/calculator_test.php -notifications: - email: false - +archive: true after_script: From 2e7c73072e8d696acb61d30104e6fba572092e17 Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 15 Sep 2014 13:06:25 +0530 Subject: [PATCH 11/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index fdcd534..73cbbf1 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(14, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(15, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class From 5c360511329dfd1c099df376f5bf163d4bed7e4b Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 19 Sep 2014 12:10:59 +0530 Subject: [PATCH 12/60] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index 52fad4c..87ba29f 100644 --- a/shippable.yml +++ b/shippable.yml @@ -21,3 +21,5 @@ after_script: - curl -XPOST https://apibeta.shippable.com/projects/53bf610155a71a2200f19124/build?token=$SHIPPABLE_API_TOKEN #php-mysql - curl -XPOST https://apibeta.shippable.com/projects/53bf610355a71a2200f19126/build?token=$SHIPPABLE_API_TOKEN + +parallelized_test : true From 0b12161f6149e4accab7fbd147746b9616d7d0b4 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 19 Sep 2014 12:13:39 +0530 Subject: [PATCH 13/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 87ba29f..435e5c8 100644 --- a/shippable.yml +++ b/shippable.yml @@ -3,7 +3,7 @@ language: php php: #- 5.3 - 5.4 - #- 5.5 + - 5.5 #- 5.6 before_script: From 1ee0a39051ad33525079ec1f502bf2a980a4ad88 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 19 Sep 2014 12:16:30 +0530 Subject: [PATCH 14/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 435e5c8..87ba29f 100644 --- a/shippable.yml +++ b/shippable.yml @@ -3,7 +3,7 @@ language: php php: #- 5.3 - 5.4 - - 5.5 + #- 5.5 #- 5.6 before_script: From 0d5ecc08ff6510e45e363eb18056420827102363 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 19 Sep 2014 12:17:05 +0530 Subject: [PATCH 15/60] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 87ba29f..9577184 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,10 +1,10 @@ language: php php: - #- 5.3 + - 5.3 - 5.4 - #- 5.5 - #- 5.6 + - 5.5 + - 5.6 before_script: - mkdir -p shippable/codecoverage From 40a1b990f9765b946e79469e77cd25ec918a9baf Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 19 Sep 2014 12:29:03 +0530 Subject: [PATCH 16/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index 73cbbf1..f394069 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -26,7 +26,7 @@ public function testSubtract(){ public function testMultiply(){ $calc = new Calculator(); $product = $calc->multiply(array(1,3,5,6)); - $this->assertEquals(90, $product); //check if 1*3*5*6 is equal to 90 + $this->assertEquals(91, $product); //check if 1*3*5*6 is equal to 90 } //test if the divide() method in our calculator class From 61c9faa4fa3e987badd0f46601e98ced93f31674 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 24 Sep 2014 11:41:16 +0530 Subject: [PATCH 17/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 9577184..81c4337 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,7 @@ language: php php: - - 5.3 + #- 5.3 - 5.4 - 5.5 - 5.6 From 9885293e47702eb3b6f7da6a6577035405be2cde Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 10 Oct 2014 12:45:39 +0530 Subject: [PATCH 18/60] Update shippable.yml --- shippable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 81c4337..98bf1b0 100644 --- a/shippable.yml +++ b/shippable.yml @@ -2,7 +2,7 @@ language: php php: #- 5.3 - - 5.4 + # - 5.4 - 5.5 - 5.6 @@ -23,3 +23,4 @@ after_script: - curl -XPOST https://apibeta.shippable.com/projects/53bf610355a71a2200f19126/build?token=$SHIPPABLE_API_TOKEN parallelized_test : true +cache: true From d3ba9c511947af9ff9ee5219d81e9dccc3d7b11e Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 10 Oct 2014 22:32:23 +0530 Subject: [PATCH 19/60] [reset_minion] --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 98bf1b0..17a6125 100644 --- a/shippable.yml +++ b/shippable.yml @@ -20,7 +20,7 @@ after_script: #php-mongo - curl -XPOST https://apibeta.shippable.com/projects/53bf610155a71a2200f19124/build?token=$SHIPPABLE_API_TOKEN #php-mysql - - curl -XPOST https://apibeta.shippable.com/projects/53bf610355a71a2200f19126/build?token=$SHIPPABLE_API_TOKEN + #- curl -XPOST https://apibeta.shippable.com/projects/53bf610355a71a2200f19126/build?token=$SHIPPABLE_API_TOKEN parallelized_test : true cache: true From 1a8e0715122d363ba109ee3a2e7f24b601e84d17 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 10 Oct 2014 22:35:26 +0530 Subject: [PATCH 20/60] Update shippable.yml --- shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 17a6125..68e8b44 100644 --- a/shippable.yml +++ b/shippable.yml @@ -2,8 +2,8 @@ language: php php: #- 5.3 - # - 5.4 - - 5.5 + - 5.4 + # - 5.5 - 5.6 before_script: From e02a5f625dc0534d19923dcd5a18984f3931bfd1 Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 13 Oct 2014 11:26:47 +0530 Subject: [PATCH 21/60] Update shippable.yml --- shippable.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 68e8b44..2846f1a 100644 --- a/shippable.yml +++ b/shippable.yml @@ -3,7 +3,7 @@ language: php php: #- 5.3 - 5.4 - # - 5.5 + - 5.5 - 5.6 before_script: @@ -15,6 +15,8 @@ script: archive: true + + after_script: #php-mongo From 85d4e3e5e508041077898489c9e3eae30ccd524b Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 14 Oct 2014 15:40:32 +0530 Subject: [PATCH 22/60] Update shippable.yml [reset_minion] --- shippable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 2846f1a..d06c0da 100644 --- a/shippable.yml +++ b/shippable.yml @@ -4,7 +4,7 @@ php: #- 5.3 - 5.4 - 5.5 - - 5.6 +#- 5.6 before_script: - mkdir -p shippable/codecoverage @@ -19,6 +19,7 @@ archive: true after_script: + - echo "test" #php-mongo - curl -XPOST https://apibeta.shippable.com/projects/53bf610155a71a2200f19124/build?token=$SHIPPABLE_API_TOKEN #php-mysql From 65a541d3307dda00dc75421851ef20e5dc97cb20 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 14 Oct 2014 15:43:19 +0530 Subject: [PATCH 23/60] Update shippable.yml --- shippable.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/shippable.yml b/shippable.yml index d06c0da..2189106 100644 --- a/shippable.yml +++ b/shippable.yml @@ -16,14 +16,9 @@ script: archive: true - after_script: - echo "test" - #php-mongo - - curl -XPOST https://apibeta.shippable.com/projects/53bf610155a71a2200f19124/build?token=$SHIPPABLE_API_TOKEN - #php-mysql - #- curl -XPOST https://apibeta.shippable.com/projects/53bf610355a71a2200f19126/build?token=$SHIPPABLE_API_TOKEN - + parallelized_test : true cache: true From eecb299246897f14a27b84c1eda5621290919569 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 14 Oct 2014 15:45:51 +0530 Subject: [PATCH 24/60] Update shippable.yml [reset_minion] --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 2189106..5ada6c3 100644 --- a/shippable.yml +++ b/shippable.yml @@ -21,4 +21,4 @@ after_script: - echo "test" parallelized_test : true -cache: true +#cache: true From 98208263fe2c4683fef96e93a45a5c5fce6c5d6b Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 6 Nov 2014 14:02:19 +0530 Subject: [PATCH 25/60] Update calculator_test.php --- tests/calculator_test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index f394069..77eda61 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -17,7 +17,7 @@ public function testAdd(){ public function testSubtract(){ $calc = new Calculator(); $difference = $calc->subtract(5,2); - $this->assertEquals(3, $difference); //check if 5 - 2 is equal to 3 + $this->assertEquals(4, $difference); //check if 5 - 2 is equal to 3 } //test if the multiply() method in our calculator class @@ -26,7 +26,7 @@ public function testSubtract(){ public function testMultiply(){ $calc = new Calculator(); $product = $calc->multiply(array(1,3,5,6)); - $this->assertEquals(91, $product); //check if 1*3*5*6 is equal to 90 + $this->assertEquals(92, $product); //check if 1*3*5*6 is equal to 90 } //test if the divide() method in our calculator class From d2f1de96612d60c71bc891fd11afc2b8c9715ba8 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 13:27:11 +0530 Subject: [PATCH 26/60] [shippable new build status flow] --- shippable.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 5ada6c3..20325cd 100644 --- a/shippable.yml +++ b/shippable.yml @@ -15,8 +15,6 @@ script: archive: true - - after_script: - echo "test" From 5446c025969e5f2c56a21037c70bffb7995bc7d8 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 14:12:50 +0530 Subject: [PATCH 27/60] Update shippable.yml --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index 20325cd..cecd211 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,5 +1,6 @@ language: php + php: #- 5.3 - 5.4 @@ -15,6 +16,7 @@ script: archive: true + after_script: - echo "test" From 91dbcb824fa4594f3d7a8a2ebd8b1e89269fda39 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 14:22:22 +0530 Subject: [PATCH 28/60] [shippable new build status flow] --- shippable.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index cecd211..c6b471e 100644 --- a/shippable.yml +++ b/shippable.yml @@ -5,7 +5,7 @@ php: #- 5.3 - 5.4 - 5.5 -#- 5.6 + - 5.6 before_script: - mkdir -p shippable/codecoverage @@ -16,7 +16,6 @@ script: archive: true - after_script: - echo "test" From 80de95be77ed44ccce2eca473ef0a3914f8d1549 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 15:44:38 +0530 Subject: [PATCH 29/60] [shippable new build status flow] --- shippable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index c6b471e..a136d53 100644 --- a/shippable.yml +++ b/shippable.yml @@ -2,7 +2,7 @@ language: php php: - #- 5.3 + - 5.3 - 5.4 - 5.5 - 5.6 @@ -19,5 +19,6 @@ archive: true after_script: - echo "test" + parallelized_test : true #cache: true From 05a96ea81e2612f6acf1188795d2c5f75fffd8b0 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 16:01:23 +0530 Subject: [PATCH 30/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index a136d53..bd19912 100644 --- a/shippable.yml +++ b/shippable.yml @@ -5,7 +5,7 @@ php: - 5.3 - 5.4 - 5.5 - - 5.6 +# - 5.6 before_script: - mkdir -p shippable/codecoverage From 515b8e6ba9b5eee78c1510ea79aec4a6a2ab2808 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 16:02:43 +0530 Subject: [PATCH 31/60] Update shippable.yml [shippable new build status flow] --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index bd19912..a136d53 100644 --- a/shippable.yml +++ b/shippable.yml @@ -5,7 +5,7 @@ php: - 5.3 - 5.4 - 5.5 -# - 5.6 + - 5.6 before_script: - mkdir -p shippable/codecoverage From ca422287ebca38e6f2ae89f9587da7634e2e330c Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 16:07:03 +0530 Subject: [PATCH 32/60] Update shippable.yml [shippable new build status flow] --- shippable.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index a136d53..f587407 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,6 +1,4 @@ language: php - - php: - 5.3 - 5.4 @@ -19,6 +17,5 @@ archive: true after_script: - echo "test" - parallelized_test : true #cache: true From 59c365cbecdc9ddef49925fa005cca595ff7cf6b Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 16:14:41 +0530 Subject: [PATCH 33/60] Update shippable.yml [shippable new build status flow] --- shippable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shippable.yml b/shippable.yml index f587407..699cb6e 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,4 +1,5 @@ language: php + php: - 5.3 - 5.4 @@ -17,5 +18,6 @@ archive: true after_script: - echo "test" + parallelized_test : true #cache: true From 473672fe29a087164c3bf54354fcf11a643b9b9b Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 19 Nov 2014 16:19:04 +0530 Subject: [PATCH 34/60] [shippable new build status flow] --- shippable.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 699cb6e..de4d2f4 100644 --- a/shippable.yml +++ b/shippable.yml @@ -10,14 +10,16 @@ before_script: - mkdir -p shippable/codecoverage - mkdir -p shippable/testresults + script: - phpunit --log-junit shippable/testresults/junit.xml --coverage-xml shippable/codecoverage tests/calculator_test.php archive: true + after_script: - echo "test" - - + + parallelized_test : true #cache: true From d278438dd8e5874ddc46e7dacf13e560a6a2d88e Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 20 Nov 2014 15:10:47 +0530 Subject: [PATCH 35/60] [shippable new build status flow] --- shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index de4d2f4..dd66103 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,10 +1,10 @@ language: php php: - - 5.3 + # - 5.3 - 5.4 - 5.5 - - 5.6 + # - 5.6 before_script: - mkdir -p shippable/codecoverage From 5d994936435b23a848f7bb33b8da5d1cc4f61150 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 20 Nov 2014 15:14:12 +0530 Subject: [PATCH 36/60] Update calculator_test.php --- tests/calculator_test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index 77eda61..524df5f 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(15, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(14, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class @@ -26,7 +26,7 @@ public function testSubtract(){ public function testMultiply(){ $calc = new Calculator(); $product = $calc->multiply(array(1,3,5,6)); - $this->assertEquals(92, $product); //check if 1*3*5*6 is equal to 90 + $this->assertEquals(90, $product); //check if 1*3*5*6 is equal to 90 } //test if the divide() method in our calculator class From c078543b5bc4dc5beb744bfa8d5bda2bd3dcc87e Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 20 Nov 2014 15:16:23 +0530 Subject: [PATCH 37/60] [shippable new build status flow] --- tests/calculator_test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index 524df5f..d3ac492 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(14, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(16, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class @@ -17,7 +17,7 @@ public function testAdd(){ public function testSubtract(){ $calc = new Calculator(); $difference = $calc->subtract(5,2); - $this->assertEquals(4, $difference); //check if 5 - 2 is equal to 3 + $this->assertEquals(3, $difference); //check if 5 - 2 is equal to 3 } //test if the multiply() method in our calculator class From 14b1ac93789bb712c4bdfb5396557e642e1c86cf Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 19 Jan 2015 16:03:56 +0530 Subject: [PATCH 38/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index dd66103..87181f5 100644 --- a/shippable.yml +++ b/shippable.yml @@ -15,7 +15,7 @@ script: - phpunit --log-junit shippable/testresults/junit.xml --coverage-xml shippable/codecoverage tests/calculator_test.php archive: true - +build_image: shippable/minv2:beta after_script: - echo "test" From 6aa08291ff0cd2d2ec4154ee7932465c2012665c Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 23 Mar 2015 14:19:58 +0530 Subject: [PATCH 39/60] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 87181f5..8d2e340 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,9 +1,9 @@ language: php -php: +#php: # - 5.3 - - 5.4 - - 5.5 + # - 5.4 + #- 5.5 # - 5.6 before_script: From 51495d1b6fe1c1e99ed08ff87a6c4ed2000acbc5 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 21 Apr 2015 16:12:59 +0530 Subject: [PATCH 40/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index d3ac492..e4517d4 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -26,7 +26,7 @@ public function testSubtract(){ public function testMultiply(){ $calc = new Calculator(); $product = $calc->multiply(array(1,3,5,6)); - $this->assertEquals(90, $product); //check if 1*3*5*6 is equal to 90 + $this->assertEquals(91, $product); //check if 1*3*5*6 is equal to 90 } //test if the divide() method in our calculator class From 7ebd9837e5fee54758b32a4891d16b1f4e53cc26 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 21 Apr 2015 16:14:00 +0530 Subject: [PATCH 41/60] Update shippable.yml --- shippable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shippable.yml b/shippable.yml index 8d2e340..fecb60f 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,8 +1,8 @@ language: php -#php: - # - 5.3 - # - 5.4 +php: + - 5.3 + - 5.4 #- 5.5 # - 5.6 @@ -15,7 +15,7 @@ script: - phpunit --log-junit shippable/testresults/junit.xml --coverage-xml shippable/codecoverage tests/calculator_test.php archive: true -build_image: shippable/minv2:beta +#build_image: shippable/minv2:beta after_script: - echo "test" From 0aff02278315c32219117df93349fdad292f409a Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 21 Apr 2015 16:15:11 +0530 Subject: [PATCH 42/60] Update shippable.yml --- shippable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index fecb60f..fd29a9a 100644 --- a/shippable.yml +++ b/shippable.yml @@ -3,8 +3,8 @@ language: php php: - 5.3 - 5.4 - #- 5.5 - # - 5.6 + - 5.5 + - 5.6 before_script: - mkdir -p shippable/codecoverage From 4d8a65ae8617601de6c40d9dcd0735f4f9f9d67b Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 23 Apr 2015 11:32:03 +0530 Subject: [PATCH 43/60] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index fd29a9a..8e0f223 100644 --- a/shippable.yml +++ b/shippable.yml @@ -23,3 +23,4 @@ after_script: parallelized_test : true #cache: true + From 368f0bcba17f9e131a0cfb0af46eceb61220eaa6 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 7 May 2015 14:18:27 +0530 Subject: [PATCH 44/60] Update shippable.yml --- shippable.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 8e0f223..c6e22f9 100644 --- a/shippable.yml +++ b/shippable.yml @@ -10,7 +10,6 @@ before_script: - mkdir -p shippable/codecoverage - mkdir -p shippable/testresults - script: - phpunit --log-junit shippable/testresults/junit.xml --coverage-xml shippable/codecoverage tests/calculator_test.php @@ -20,7 +19,6 @@ archive: true after_script: - echo "test" - parallelized_test : true #cache: true From 87405617e2be141450660207a0007e56768e13a0 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 8 May 2015 11:08:24 +0530 Subject: [PATCH 45/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index c6e22f9..6971656 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,7 @@ language: php php: - - 5.3 + # - 5.3 - 5.4 - 5.5 - 5.6 From 63e3b99cb89ed333fe51e7c58d771482f9694520 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 8 May 2015 16:18:31 +0530 Subject: [PATCH 46/60] Update shippable.yml --- shippable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/shippable.yml b/shippable.yml index 6971656..3112571 100644 --- a/shippable.yml +++ b/shippable.yml @@ -16,6 +16,7 @@ script: archive: true #build_image: shippable/minv2:beta + after_script: - echo "test" From f89cc8afeedf72436447d0e0cdaf1cbe43250498 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 19 May 2015 11:44:18 +0530 Subject: [PATCH 47/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index e4517d4..fdb3e84 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -17,7 +17,7 @@ public function testAdd(){ public function testSubtract(){ $calc = new Calculator(); $difference = $calc->subtract(5,2); - $this->assertEquals(3, $difference); //check if 5 - 2 is equal to 3 + $this->assertEquals(4, $difference); //check if 5 - 2 is equal to 3 } //test if the multiply() method in our calculator class From 2313f352d86691220ee10f945886725d0c2c0ab4 Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 26 Jun 2015 17:40:01 +0530 Subject: [PATCH 48/60] Update shippable.yml --- shippable.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shippable.yml b/shippable.yml index 3112571..7e231a2 100644 --- a/shippable.yml +++ b/shippable.yml @@ -23,3 +23,8 @@ after_script: parallelized_test : true #cache: true +after_success: + - echo "Build ran successfully" + +after_failure: + - echo "Build failed" From dd00cd34f17b03148ce2db8a6b12f91f60e83e65 Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 5 Oct 2015 14:44:21 +0530 Subject: [PATCH 49/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 7e231a2..0e8cc90 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,7 +1,7 @@ language: php php: - # - 5.3 + - 5.3 - 5.4 - 5.5 - 5.6 From 23998d05881b89d436aaa527dbcc26c83af87214 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 7 Oct 2015 16:26:59 +0530 Subject: [PATCH 50/60] Update shippable.yml --- shippable.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/shippable.yml b/shippable.yml index 0e8cc90..d1fa8d4 100644 --- a/shippable.yml +++ b/shippable.yml @@ -28,3 +28,11 @@ after_success: after_failure: - echo "Build failed" + +notifications: + email: + recipients: + - vidya@shippable.com + - buildsampletest@gmail.com + on_success: change + on_failure: always From bb01c3c0efe1bb7090283266fff83b3fbaefd1b4 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 7 Oct 2015 16:28:34 +0530 Subject: [PATCH 51/60] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index d1fa8d4..3747e3d 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,8 +1,8 @@ language: php php: - - 5.3 - - 5.4 + #- 5.3 + #- 5.4 - 5.5 - 5.6 @@ -33,6 +33,6 @@ notifications: email: recipients: - vidya@shippable.com - - buildsampletest@gmail.com + - buildsampletest@gmail.com on_success: change on_failure: always From 1c3742b265e0f5f6d56c422101d1ab40c1d7f7f9 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 7 Oct 2015 16:35:22 +0530 Subject: [PATCH 52/60] Update calculator_test.php --- tests/calculator_test.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index fdb3e84..fdcd534 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(16, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(14, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class @@ -17,7 +17,7 @@ public function testAdd(){ public function testSubtract(){ $calc = new Calculator(); $difference = $calc->subtract(5,2); - $this->assertEquals(4, $difference); //check if 5 - 2 is equal to 3 + $this->assertEquals(3, $difference); //check if 5 - 2 is equal to 3 } //test if the multiply() method in our calculator class @@ -26,7 +26,7 @@ public function testSubtract(){ public function testMultiply(){ $calc = new Calculator(); $product = $calc->multiply(array(1,3,5,6)); - $this->assertEquals(91, $product); //check if 1*3*5*6 is equal to 90 + $this->assertEquals(90, $product); //check if 1*3*5*6 is equal to 90 } //test if the divide() method in our calculator class From ceafe477022d2a1e1c9514b72f5288862a9158a3 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 7 Oct 2015 16:45:53 +0530 Subject: [PATCH 53/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 3747e3d..4e27b44 100644 --- a/shippable.yml +++ b/shippable.yml @@ -34,5 +34,5 @@ notifications: recipients: - vidya@shippable.com - buildsampletest@gmail.com - on_success: change + on_success: always on_failure: always From 4b489fda547620d103c86f5aa34331150578c989 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 7 Oct 2015 16:47:27 +0530 Subject: [PATCH 54/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 4e27b44..d6a23fe 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,4 +1,4 @@ -language: php +#language: php php: #- 5.3 From 08de4c4f49ab29226aa418364974ed7f0abadf91 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 7 Oct 2015 16:50:15 +0530 Subject: [PATCH 55/60] Update shippable.yml --- shippable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index d6a23fe..aa7beed 100644 --- a/shippable.yml +++ b/shippable.yml @@ -1,4 +1,4 @@ -#language: php +language: php php: #- 5.3 @@ -34,5 +34,5 @@ notifications: recipients: - vidya@shippable.com - buildsampletest@gmail.com - on_success: always - on_failure: always + on_success: change + on_failure: change From ead04fe82aaede48fc8335ed57bef79af8bd7221 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 7 Oct 2015 16:57:28 +0530 Subject: [PATCH 56/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index fdcd534..5a4c0f5 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(14, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(141, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class From ce2b4b1dcb4eda29060399c9c988f82f8e2698f9 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 3 Dec 2015 12:03:33 +0530 Subject: [PATCH 57/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index aa7beed..4dfbd90 100644 --- a/shippable.yml +++ b/shippable.yml @@ -2,7 +2,7 @@ language: php php: #- 5.3 - #- 5.4 + - 5.4 - 5.5 - 5.6 From 7e73243b3d9e9df5b82af1ea2327c984fcdd22e4 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 3 Dec 2015 12:20:38 +0530 Subject: [PATCH 58/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index 5a4c0f5..fdcd534 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(141, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(14, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class From 64aa2ae700873da12afc611766d80c744afe9f15 Mon Sep 17 00:00:00 2001 From: buildsample Date: Thu, 3 Dec 2015 12:43:57 +0530 Subject: [PATCH 59/60] Update calculator_test.php --- tests/calculator_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calculator_test.php b/tests/calculator_test.php index fdcd534..45ead87 100644 --- a/tests/calculator_test.php +++ b/tests/calculator_test.php @@ -8,7 +8,7 @@ class CalculatorTest extends PHPUnit_Framework_TestCase{ public function testAdd(){ $calc = new Calculator(); $sum = $calc->add(array(2,3,4,5)); - $this->assertEquals(14, $sum); //check if 2+3+4+5 is equal to 14 + $this->assertEquals(114, $sum); //check if 2+3+4+5 is equal to 14 } //test if the subtract() method in our calculator class From 3d7efe9e2d8be3e8773be869b422d8b7cacf370e Mon Sep 17 00:00:00 2001 From: buildsample Date: Fri, 4 Dec 2015 11:12:01 +0530 Subject: [PATCH 60/60] Update shippable.yml --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 4dfbd90..cee1bc2 100644 --- a/shippable.yml +++ b/shippable.yml @@ -35,4 +35,4 @@ notifications: - vidya@shippable.com - buildsampletest@gmail.com on_success: change - on_failure: change + on_failure: always