Explorar el Código

Adds a jenkinsfile

Fred Damstra (Macbook 2015) hace 2 años
padre
commit
8536951f8c
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  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'
+            }
+        }
+    }
+}