Pipeline improvements
Some checks failed
ecodash/pipeline/head There was a failure building this commit

This commit is contained in:
MassiveBox 2023-07-21 17:01:53 +02:00
parent 33f09c93bd
commit 90e83eaf62
Signed by: massivebox
GPG key ID: 9B74D3A59181947D
3 changed files with 23 additions and 88 deletions

32
jenkins/Jenkinsfile vendored
View file

@ -3,12 +3,9 @@ pipeline {
agent any
environment {
USER='user'
PASSWORD='password'
DOCKER_REGISTRY='git.massivebox.net'
BUILDER_NAME='mbuilder'
SERVICE='ecodash/ecodash'
TAG='latest'
}
stages {
@ -16,14 +13,15 @@ pipeline {
stage('Run linter and build') {
agent { docker { image 'golang' } }
steps {
git url: 'https://git.massivebox.net/ecodash/ecodash'
//sh 'curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin'
checkout scm
sh 'curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin'
sh 'go mod tidy'
//sh 'golangci-lint run'
sh 'golangci-lint run'
sh 'env GOOS=linux GOARCH=amd64 go build -o app src/main/main.go'
stash includes: 'app', name: 'ecodash-x86'
sh 'env GOOS=linux GOARCH=arm go build -o app src/main/main.go'
stash includes: 'app', name: 'ecodash-arm'
stash includes: 'jenkins/Dockerfile', name: 'dockerfile'
stash includes: 'templates/**', name: 'templates'
}
}
@ -31,10 +29,10 @@ pipeline {
stage('Build x86 container') {
steps {
sh 'curl -L -o Dockerfile https://pasty.nikko.cf/UYU39i/raw'
unstash 'dockerfile'
unstash 'ecodash-x86'
unstash 'templates'
sh 'docker build -t $DOCKER_REGISTRY/$SERVICE:$TAG .'
sh 'docker build -t ecodash .'
}
}
@ -54,10 +52,23 @@ pipeline {
stage('Build arm container') {
steps {
sh 'curl -L -o Dockerfile https://pasty.nikko.cf/UYU39i/raw'
unstash 'dockerfile'
unstash 'ecodash-arm'
unstash 'templates'
sh 'docker buildx build --platform linux/arm64 -t $DOCKER_REGISTRY/$SERVICE:$TAG .'
sh 'docker buildx build --platform linux/arm64 -t ecodash .'
}
}
stage('Publish container on tag latest') {
when { branch 'master' }
steps {
withCredentials([usernamePassword(credentialsId: 'gitea-credentials', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
sh 'docker login -u $USER -p $PASSWORD $DOCKER_REGISTRY'
}
sh """
docker image tag ecodash $DOCKER_REGISTRY/$SERVICE:$TAG
docker push $DOCKER_REGISTRY/$SERVICE:$TAG
"""
}
}
@ -74,3 +85,4 @@ pipeline {
}
}