2017-05-14 13:22:45 +00:00
|
|
|
#!groovy
|
2019-07-31 15:30:58 +00:00
|
|
|
/*
|
2021-03-07 18:58:57 +00:00
|
|
|
Copyright 2017-2021 Jan Dittberner
|
2019-07-31 15:30:58 +00:00
|
|
|
|
2021-03-07 18:58:57 +00:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this program except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2019-07-31 15:30:58 +00:00
|
|
|
|
2021-03-07 18:58:57 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2019-07-31 15:30:58 +00:00
|
|
|
|
2021-03-07 18:58:57 +00:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
2019-07-31 15:30:58 +00:00
|
|
|
*/
|
2017-05-14 13:22:45 +00:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
2021-03-07 19:22:06 +00:00
|
|
|
tools {
|
2021-03-07 19:28:01 +00:00
|
|
|
go "go-1.16"
|
2017-05-14 13:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Build') {
|
|
|
|
steps {
|
2019-07-31 10:46:33 +00:00
|
|
|
sh "make distclean && make BUILD='${env.BUILD_TAG}'"
|
2017-05-14 13:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Create build output') {
|
|
|
|
steps {
|
2018-03-29 20:04:03 +00:00
|
|
|
archiveArtifacts artifacts: 'cacert-boardvoting,config.yaml.example'
|
2017-05-14 13:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|