Browse Source

Adds a jenkinsfile

Fred Damstra (Macbook 2015) 2 năm trước cách đây
mục cha
commit
8536951f8c
1 tập tin đã thay đổi với 11 bổ sung0 xóa
  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'
+            }
+        }
+    }
+}