Browse Source

init jenkinsfile

master
Cyril CONSTANTIN 2 weeks ago
parent
commit
37a14daffe
  1. 15
      Jenkinsfile

15
Jenkinsfile vendored

@ -0,0 +1,15 @@ @@ -0,0 +1,15 @@
Jenkinsfile (Declarative Pipeline)
/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'python:3.14.6-alpine3.24' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}
Loading…
Cancel
Save