This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
pipeline{
agentany
stages{
stage('Build'){
steps{
sh'CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o exporter main.go'
}
}
stage('Test'){
steps{
/* `make check` returns non-zero on test failures,
* using `true` to allow the Pipeline to continue nonetheless