Skip to content

Commit 6449b2a

Browse files
committed
initial commit
0 parents  commit 6449b2a

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Jenkinsfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Jenkinsfile (Declarative Pipeline)
2+
/* Requires the Docker Pipeline plugin */
3+
pipeline {
4+
agent { docker { image 'golang:1.22.0-alpine3.19' } }
5+
stages {
6+
stage('build') {
7+
steps {
8+
sh 'go version'
9+
}
10+
}
11+
}
12+
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Jenkins-tutorial

0 commit comments

Comments
 (0)