Skip to content

Commit

Permalink
Avoid Groovy secret env var interpolation (#6505)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrks authored Oct 9, 2023
1 parent d183dbe commit f0aff4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ pipeline {
// Replace covermode values with set just for coveralls to reduce the variability in reports.
sh 'awk \'NR==1{print "mode: set";next} $NF>0{$NF=1} {print}\' cover_ce.out > cover_ce_coveralls.out'
sh 'which goveralls' // check if goveralls is installed
sh "goveralls -coverprofile=cover_ce_coveralls.out -service=uberjenkins -repotoken=${COVERALLS_TOKEN} || true"
sh 'goveralls -coverprofile=cover_ce_coveralls.out -service=uberjenkins -repotoken=$COVERALLS_TOKEN || true'
}
}
}
Expand Down

0 comments on commit f0aff4e

Please sign in to comment.