From ff4b7dbaf32ac15cb2da0274109a9491047f2be5 Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 10:10:37 -0500
Subject: [PATCH 01/25] init Jenkinsfile
---
Jenkinsfile | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 Jenkinsfile
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000000..0e5df77b4e
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,15 @@
+pipeline {
+ agent {
+ docker {
+ image 'node:6-alpine'
+ args '-p 9005:3000'
+ }
+ }
+ stages {
+ stage('Build') {
+ steps {
+ sh 'npm install'
+ }
+ }
+ }
+}
From 99e960e6f3e731cadfb1a05897016faa1ccec169 Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 10:12:46 -0500
Subject: [PATCH 02/25] init Jenkinsfile
---
Jenkinsfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 0e5df77b4e..14f0b741ab 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -2,7 +2,7 @@ pipeline {
agent {
docker {
image 'node:6-alpine'
- args '-p 9005:3000'
+ args '-p 3000:3000'
}
}
stages {
From 9e20d1c6debf95c0c03fd751ac63c6b6532d7ea0 Mon Sep 17 00:00:00 2001
From: Nick
Date: Mon, 2 Jul 2018 08:25:16 -0700
Subject: [PATCH 03/25] init Jenkins
---
Jenkinsfile | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 14f0b741ab..f20fd35ea8 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,15 +1,16 @@
pipeline {
- agent {
- docker {
- image 'node:6-alpine'
- args '-p 3000:3000'
- }
+ agent {
+ docker {
+ image 'node:6-alpine'
+ args '-p 3000:3000'
}
- stages {
- stage('Build') {
- steps {
- sh 'npm install'
- }
- }
+
+ }
+ stages {
+ stage('Build') {
+ steps {
+ sh 'npm install'
+ }
}
-}
+ }
+}
\ No newline at end of file
From f32e2fa2e94f8a09ffac3668b6df08049e5d21d4 Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 10:29:14 -0500
Subject: [PATCH 04/25] init Jenkinsfile
---
README.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/README.md b/README.md
index 8a36e36b2c..70a67f7cf7 100644
--- a/README.md
+++ b/README.md
@@ -12,3 +12,5 @@ The `jenkins` directory contains an example of the `Jenkinsfile` (i.e. Pipeline)
you'll be creating yourself during the tutorial and the `scripts` subdirectory
contains shell scripts with commands that are executed when Jenkins processes
the "Test" and "Deliver" stages of your Pipeline.
+
+A change to test build
From 175d108466d0c1551124c4fd5880d6540bad6508 Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 10:42:11 -0500
Subject: [PATCH 05/25] fake build
---
Jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index f20fd35ea8..7bdcdb2249 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -9,8 +9,8 @@ pipeline {
stages {
stage('Build') {
steps {
- sh 'npm install'
+ echo "Done fake build"
}
}
}
-}
\ No newline at end of file
+}
From a92442dec26d3f7f3acefdedbff785a0c74fb9c5 Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 10:45:21 -0500
Subject: [PATCH 06/25] fake build
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 70a67f7cf7..01f97320b0 100644
--- a/README.md
+++ b/README.md
@@ -13,4 +13,4 @@ you'll be creating yourself during the tutorial and the `scripts` subdirectory
contains shell scripts with commands that are executed when Jenkins processes
the "Test" and "Deliver" stages of your Pipeline.
-A change to test build
+A change to test build again
From e8892319602c148271f9f7c83f895bbb2f8c1166 Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 10:48:42 -0500
Subject: [PATCH 07/25] fake build
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 01f97320b0..a379f571ee 100644
--- a/README.md
+++ b/README.md
@@ -13,4 +13,4 @@ you'll be creating yourself during the tutorial and the `scripts` subdirectory
contains shell scripts with commands that are executed when Jenkins processes
the "Test" and "Deliver" stages of your Pipeline.
-A change to test build again
+A change to test build again & again
From a8779bef62c248c378dc82aaf68ade2426b2b056 Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 10:56:55 -0500
Subject: [PATCH 08/25] added github webhook
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index a379f571ee..70a67f7cf7 100644
--- a/README.md
+++ b/README.md
@@ -13,4 +13,4 @@ you'll be creating yourself during the tutorial and the `scripts` subdirectory
contains shell scripts with commands that are executed when Jenkins processes
the "Test" and "Deliver" stages of your Pipeline.
-A change to test build again & again
+A change to test build
From 63a795d447c3e2f71c17090ca8ee611a4f72df28 Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 10:58:34 -0500
Subject: [PATCH 09/25] added github webhook
---
Jenkinsfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 7bdcdb2249..cc48d07158 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -9,7 +9,7 @@ pipeline {
stages {
stage('Build') {
steps {
- echo "Done fake build"
+ echo "npm install"
}
}
}
From e1aa43f3b32ebf1ea8018edcd31ead2cefafe04e Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 13:02:22 -0500
Subject: [PATCH 10/25] added test stage
---
Jenkinsfile | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/Jenkinsfile b/Jenkinsfile
index cc48d07158..f348562106 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -6,11 +6,22 @@ pipeline {
}
}
+
+ environment {
+ CI = 'true'
+ }
+
stages {
stage('Build') {
steps {
echo "npm install"
}
}
+
+ stage('Test') {
+ steps {
+ sh './jenkins/scripts/test.sh'
+ }
+ }
}
}
From 32de408b19dfef43aff200d523b2426343d9a2df Mon Sep 17 00:00:00 2001
From: root
Date: Mon, 2 Jul 2018 13:05:16 -0500
Subject: [PATCH 11/25] added test stage
---
Jenkinsfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index f348562106..28af06031b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -14,7 +14,7 @@ pipeline {
stages {
stage('Build') {
steps {
- echo "npm install"
+ sh 'npm install'
}
}
From 88726c1eef8688d70980985907b5d5e40ab0c788 Mon Sep 17 00:00:00 2001
From: root
Date: Sat, 7 Jul 2018 06:53:59 -0500
Subject: [PATCH 12/25] deploy
---
Jenkinsfile | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/Jenkinsfile b/Jenkinsfile
index 28af06031b..285a90f27b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -23,5 +23,13 @@ pipeline {
sh './jenkins/scripts/test.sh'
}
}
+
+ stage('Deliver') {
+ steps {
+ sh './jenkins/scripts/deliver.sh'
+ input message: 'Finished using the web site? (Click "Proceed" to continue)'
+ sh './jenkins/scripts/kill.sh'
+ }
+ }
}
}
From 7f98fac88e28f6abe9070e047be4f65d85abb3dc Mon Sep 17 00:00:00 2001
From: Nick
Date: Wed, 11 Jul 2018 11:48:51 -0700
Subject: [PATCH 13/25] Update App.js
---
src/App.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/App.js b/src/App.js
index 203067e4d7..2a8361c735 100644
--- a/src/App.js
+++ b/src/App.js
@@ -12,7 +12,9 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
+ OK Made the change now!
+
);
}
From 2fc606ae6801bbdf39b446617cd502209b442c98 Mon Sep 17 00:00:00 2001
From: Nick
Date: Wed, 11 Jul 2018 11:52:08 -0700
Subject: [PATCH 14/25] Update App.js
---
src/App.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/App.js b/src/App.js
index 2a8361c735..510cb6ff8d 100644
--- a/src/App.js
+++ b/src/App.js
@@ -12,7 +12,7 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
- OK Made the change now!
+ OK Made the change now! Again
From 0bd9b585acdb28af886117e481cabd7d2115b67b Mon Sep 17 00:00:00 2001
From: Nick
Date: Wed, 11 Jul 2018 12:06:55 -0700
Subject: [PATCH 15/25] Update App.js
---
src/App.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/App.js b/src/App.js
index 510cb6ff8d..443791dd7d 100644
--- a/src/App.js
+++ b/src/App.js
@@ -12,7 +12,7 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
- OK Made the change now! Again
+ OK Made the change now! Again with PMDK
From 6c0f694d7256eadbe234397ac9c76728092ea2c1 Mon Sep 17 00:00:00 2001
From: Nick
Date: Wed, 11 Jul 2018 12:09:41 -0700
Subject: [PATCH 16/25] Update App.js
---
src/App.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/App.js b/src/App.js
index 443791dd7d..81791d5726 100644
--- a/src/App.js
+++ b/src/App.js
@@ -12,7 +12,7 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
- OK Made the change now! Again with PMDK
+ OK Made the change now! Again with PMDK now
From 92f3a51d9b8834fb077fb22ce9a8930cebd29fe7 Mon Sep 17 00:00:00 2001
From: Nick
Date: Tue, 17 Jul 2018 09:49:13 -0700
Subject: [PATCH 17/25] Update App.js
---
src/App.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/App.js b/src/App.js
index 81791d5726..3a5fc496bc 100644
--- a/src/App.js
+++ b/src/App.js
@@ -13,6 +13,7 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
OK Made the change now! Again with PMDK now
+ Making another change to my code optimized for Apache Pass, this should trigger Jenkins build, and then launch app
From f686f234a1e8b927432b0ddbbdf771c0bf548231 Mon Sep 17 00:00:00 2001
From: Nick
Date: Tue, 17 Jul 2018 09:49:54 -0700
Subject: [PATCH 18/25] Update App.js
---
src/App.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/App.js b/src/App.js
index 3a5fc496bc..ea0f8d0d80 100644
--- a/src/App.js
+++ b/src/App.js
@@ -14,6 +14,7 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
OK Made the change now! Again with PMDK now
Making another change to my code optimized for Apache Pass, this should trigger Jenkins build, and then launch app
+
From 2b8a3f983273990a4dda5e13701bee17d78ec0b7 Mon Sep 17 00:00:00 2001
From: Nick
Date: Tue, 17 Jul 2018 09:50:55 -0700
Subject: [PATCH 19/25] update App
---
src/App.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/App.js b/src/App.js
index ea0f8d0d80..988eb6813f 100644
--- a/src/App.js
+++ b/src/App.js
@@ -15,6 +15,8 @@ class App extends Component {
OK Made the change now! Again with PMDK now
Making another change to my code optimized for Apache Pass, this should trigger Jenkins build, and then launch app
+
+
From d37467e32b4c06f29e9e7b3397031b3aeb19e470 Mon Sep 17 00:00:00 2001
From: Nick
Date: Tue, 17 Jul 2018 09:52:24 -0700
Subject: [PATCH 20/25] Update App.js
---
src/App.js | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/src/App.js b/src/App.js
index 988eb6813f..306724cadd 100644
--- a/src/App.js
+++ b/src/App.js
@@ -13,10 +13,7 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
OK Made the change now! Again with PMDK now
- Making another change to my code optimized for Apache Pass, this should trigger Jenkins build, and then launch app
-
-
-
+
From 2bc888da1475600a6e2e36029fabf576430a7193 Mon Sep 17 00:00:00 2001
From: Nick
Date: Tue, 17 Jul 2018 09:53:34 -0700
Subject: [PATCH 21/25] change for Apache Pass
---
src/App.js | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/App.js b/src/App.js
index 306724cadd..29f2cbd2e4 100644
--- a/src/App.js
+++ b/src/App.js
@@ -13,6 +13,10 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
OK Made the change now! Again with PMDK now
+ Making another change to my code optimized for Apache Pass, this should trigger Jenkins build, and then launch app
+
+
+
From 15ae9ad69bfea77c18240f1fff8311991b9d08af Mon Sep 17 00:00:00 2001
From: Nick
Date: Tue, 17 Jul 2018 11:14:51 -0700
Subject: [PATCH 22/25] updated code
---
src/App.js | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/src/App.js b/src/App.js
index 29f2cbd2e4..c8adc03c4c 100644
--- a/src/App.js
+++ b/src/App.js
@@ -12,12 +12,8 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
- OK Made the change now! Again with PMDK now
- Making another change to my code optimized for Apache Pass, this should trigger Jenkins build, and then launch app
-
-
-
-
+ 1. OK Made the change now! Again with PMDK now
+ 2Making another change to my code optimized for Apache Pass, this should trigger Jenkins build, and then launch app
From 8acb92c566f33bc763a809368f3b09600d5b9551 Mon Sep 17 00:00:00 2001
From: Nick
Date: Tue, 5 Mar 2019 22:28:24 -0800
Subject: [PATCH 23/25] Update App.js
---
src/App.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/App.js b/src/App.js
index c8adc03c4c..a30168af97 100644
--- a/src/App.js
+++ b/src/App.js
@@ -12,7 +12,7 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
- 1. OK Made the change now! Again with PMDK now
+ 1. changes OK Made the change now! Again with PMDK now
2Making another change to my code optimized for Apache Pass, this should trigger Jenkins build, and then launch app
From d4ef3760eada6b6c221de1198ec3ee960c2e2c2f Mon Sep 17 00:00:00 2001
From: Nick
Date: Tue, 5 Mar 2019 22:36:28 -0800
Subject: [PATCH 24/25] Update App.js
---
src/App.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/App.js b/src/App.js
index a30168af97..c798f868b8 100644
--- a/src/App.js
+++ b/src/App.js
@@ -12,7 +12,7 @@ class App extends Component {
To get started, edit src/App.js and save to reload.
- 1. changes OK Made the change now! Again with PMDK now
+ 1. changes OK OK OK Made the change now! Again with PMDK now
2Making another change to my code optimized for Apache Pass, this should trigger Jenkins build, and then launch app
From 91aa4903a4d01f3278694935c21b4e765eadfe2f Mon Sep 17 00:00:00 2001
From: Nick
Date: Tue, 5 Mar 2019 22:47:33 -0800
Subject: [PATCH 25/25] Update App.js
---
src/App.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/App.js b/src/App.js
index c798f868b8..b744d8a4fd 100644
--- a/src/App.js
+++ b/src/App.js
@@ -8,7 +8,7 @@ class App extends Component {
- Welcome to React
+ Welcome to React AEP
To get started, edit src/App.js and save to reload.