Bläddra i källkod

Adds a jenkinsfile

Fred Damstra (Macbook 2015) 2 år sedan
förälder
incheckning
8536951f8c
1 ändrade filer med 11 tillägg och 0 borttagningar
  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'
+            }
+        }
+    }
+}