Sfoglia il codice sorgente

Adds a jenkinsfile

Fred Damstra (Macbook 2015) 2 anni fa
parent
commit
8536951f8c
1 ha cambiato i file con 11 aggiunte e 0 eliminazioni
  1. 11 0
      Jenkinsfile

+ 11 - 0
Jenkinsfile

@@ -0,0 +1,11 @@
+/* Requires the Docker Pipeline plugin */
+pipeline {
+    agent { docker { image 'python:3.10.7-alpine' } }
+    stages {
+        stage('build') {
+            steps {
+                sh 'python --version'
+            }
+        }
+    }
+}