From dfea4dcc17d6f4ea662316bc36c605420e0551cb Mon Sep 17 00:00:00 2001 From: Clement Date: Thu, 4 Feb 2021 12:28:50 +0800 Subject: [PATCH] Test executing build script --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0c23ad7..c7c6aa7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,9 +11,9 @@ pipeline { } stage('test') { steps { + sh 'echo "testing"' sh 'echo "hello world"' sh 'curl http://127.0.0.1:80' - sh 'echo "testing"' input "Testing complete. Proceed to deployment?" } }