diff --git a/Jenkinsfile b/Jenkinsfile index 3ffeead..1857db4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,7 @@ steps { echo 'Building..' sh 'whoami || true' - sh 'which -a uname || true' + sh 'which -a make || true' sh 'uname || true' sh 'sh -c make build/hello-linux-64' archiveArtifacts artifacts: 'build/hello-linux-64', fingerprint: true @@ -35,7 +35,7 @@ // cleanWs() echo 'Building..' sh 'whoami || true' - sh 'which -a uname || true' + sh 'which -a make || true' sh 'uname || true' sh 'sh -c make build/hello-win64.exe' archiveArtifacts artifacts: 'build/hello-win64.exe', fingerprint: true @@ -54,7 +54,7 @@ steps { echo 'Building..' sh 'whoami || true' - sh 'which -a uname || true' + sh 'which -a make || true' sh 'uname || true' sh 'uname && sh -c make build/hello-macosx.bin || true' archiveArtifacts artifacts: 'build/hello-macosx.bin', fingerprint: true @@ -71,7 +71,7 @@ steps { echo 'Linting..' sh 'whoami' - sh 'which -a uname || true' + sh 'which -a make || true' sh 'uname || true' sh 'make tidy || true' // junit allowEmptyResults: true, healthScaleFactor: 0.0, testResults: 'build/tidy.xml'