ソースを参照

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'
+            }
+        }
+    }
+}