Add Jenkinsfile
All checks were successful
gitea_evolix/test_jenkins/pipeline/head This commit looks good

This commit is contained in:
David Prevot 2022-03-14 09:24:08 +01:00
commit b4d835e4f7

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
agent { docker { image 'php:8.1.0-alpine' } }
stages {
stage('build') {
steps {
sh 'php --version'
}
}
}
}