Browse Source

Removed DEBUG=1 (#121)

* Removed DEBUG=1 from basic Jenkins build/test process.

* Removed the 'input' so that the Jenkinsfile finishes when necessary
Neil Davis 6 years ago
parent
commit
b6aec7acd1
1 changed files with 1 additions and 2 deletions
  1. 1 2
      Jenkinsfiles/Jenkinsfile

+ 1 - 2
Jenkinsfiles/Jenkinsfile

@@ -4,7 +4,7 @@ pipeline {
                 stage('Build') {
                     steps {
                         sh '''
-                            make DEBUG=1
+                            make
                            '''
                     }
                 }
@@ -47,7 +47,6 @@ pipeline {
                             make
                             ./syscalls.sh
                             '''
-                        input 'Tests complete. Do you wish to deploy?'
                     }
                 }
                 stage('Deploy') {