2 Commits
main ... master

Author SHA1 Message Date
d8210a06e1 fixed jenkinsfile
All checks were successful
GiteaTest/JenkinsGoTest/pipeline/head This commit looks good
2021-01-05 22:17:59 +01:00
67c33075c5 added go to tools
Some checks failed
GiteaTest/JenkinsGoTest/pipeline/head There was a failure building this commit
2021-01-05 22:13:21 +01:00
2 changed files with 5 additions and 4 deletions

View File

@@ -1,5 +1,8 @@
pipeline {
agent { label 'golang' }
agent { label 'linux' }
tools {
go 'Latest'
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
@@ -7,8 +10,7 @@ pipeline {
stage('Build') {
steps {
// Build SH script
sh '''export PATH=$PATH:/usr/local/go/bin
go build -o "HelloWorld-amd64-$BUILD_DISPLAY_NAME"
sh '''go build -o "HelloWorld-amd64-$BUILD_DISPLAY_NAME"
cp HelloWorld-amd64-$BUILD_DISPLAY_NAME HelloWorld-amd64-Latest
'''
// Archive Build file

View File

@@ -10,5 +10,4 @@ func main() {
fmt.Println("Added on new branch")
fmt.Println("Added on new branch main")
fmt.Println("Update counter 2")
fmt.Println("mainTest")
}