Some checks failed
CloudSave/pipeline/head There was a failure building this commit
19 lines
385 B
Plaintext
19 lines
385 B
Plaintext
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Audit') {
|
|
steps {
|
|
sh '''
|
|
go install github.com/securego/gosec/v2/cmd/gosec@v2.22.8
|
|
/var/lib/jenkins/go/bin/gosec ./...
|
|
'''
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
sh './build.sh'
|
|
}
|
|
}
|
|
}
|
|
} |