diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..52c39aee --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,17 @@ +pipeline { + agent any + environment { + GLUON_SITEDIR = "contrib/ci/minimal-site" + GLUON_TARGET = "x86-generic" + BUILD_LOG = "1" + } + stages { + stage('build') { + steps { + sh 'ls -la' + sh 'make update' + sh 'make' + } + } + } +}