Explorar o código

Adds a jenkinsfile

Fred Damstra (Macbook 2015) %!s(int64=2) %!d(string=hai) anos
pai
achega
8536951f8c
Modificáronse 1 ficheiros con 11 adicións e 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'
+            }
+        }
+    }
+}