mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-28 14:34:49 +00:00
Jakub Sokołowski
5a7be16f32
By pushing to `deploy-test` tag we can update the `go-waku.test` fleet. Job: https://ci.status.im/job/go-waku/job/deploy-test/ Signed-off-by: Jakub Sokołowski <jakub@status.im>
36 lines
493 B
Groovy
36 lines
493 B
Groovy
pipeline {
|
|
agent {
|
|
label 'linux'
|
|
}
|
|
|
|
options {
|
|
timestamps()
|
|
buildDiscarder(logRotator(
|
|
numToKeepStr: '10',
|
|
daysToKeepStr: '30',
|
|
))
|
|
}
|
|
|
|
environment {
|
|
GOPATH = "${env.HOME}/go"
|
|
PATH = "${env.PATH}:${env.GOPATH}/bin"
|
|
}
|
|
|
|
stages {
|
|
stage('Deps') {
|
|
steps { sh 'make deps' }
|
|
}
|
|
|
|
stage('Lint') {
|
|
steps { sh 'make lint' }
|
|
}
|
|
|
|
stage('Test') {
|
|
steps { sh 'make test' }
|
|
}
|
|
}
|
|
post {
|
|
always { cleanWs() }
|
|
}
|
|
}
|