浏览代码

Adds a jenkinsfile

Fred Damstra (Macbook 2015) 2 年之前
父节点
当前提交
8536951f8c
共有 1 个文件被更改,包括 11 次插入0 次删除
  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'
+            }
+        }
+    }
+}