-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
39 lines (35 loc) · 1.22 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
pipeline {
agent {
node {
label 'WSL_agent'
}
}
tools {
go '1.18.1'
}
environment {
GO111MODULE = 'on' // In this mode, the go command looks for the go.mod file in the project directory
// to determine the required dependencies and their versions.
}
stages {
stage ('Test'){
steps {
git branch: 'main', url: 'https://github.com/TankEngine-ish/GO_App_Jenkins_Deployment'
sh 'go test ./...'
}
}
stage ('Build'){
steps {
git branch: 'main', url: 'https://github.com/TankEngine-ish/GO_App_Jenkins_Deployment'
// app = docker.build("gojenkinsdeployment") // creates a Docker image named gojenkinsdeployment
sh 'go build .'
}
}
stage ('Run'){
steps {
sh 'cd /var/lib/jenkins/workspace/go_full_pipeline && GO_App_Jenkins_Deployment &'
// single '&' runs a command in the background and will return me to the command prompt straight away
}
}
}
}