fix(jenkins): use templ docker image for building
This commit is contained in:
parent
e75a7c095a
commit
15d6f897e9
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
@ -1,6 +1,17 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
|
stage('Build templ files') {
|
||||||
|
agent {
|
||||||
|
docker {
|
||||||
|
image 'ghcr.io/a-h/templ:latest'
|
||||||
|
reuseNode true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
sh 'templ generate'
|
||||||
|
}
|
||||||
|
}
|
||||||
stage('Build go binary') {
|
stage('Build go binary') {
|
||||||
agent {
|
agent {
|
||||||
docker {
|
docker {
|
||||||
@ -9,8 +20,6 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'go install github.com/a-h/templ/cmd/templ@latest'
|
|
||||||
sh 'templ generate'
|
|
||||||
sh 'go mod tidy'
|
sh 'go mod tidy'
|
||||||
sh 'go build main.go'
|
sh 'go build main.go'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user