apt does not have a stable interface, using apt-get instead.

This commit is contained in:
Hyatt 2022-03-18 10:15:13 -05:00
parent 55df7d740d
commit 0ce03a8c9a
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

8
Jenkinsfile vendored
View File

@ -94,13 +94,13 @@ sonar.go.coverage.reportPaths=cover.out
stage("Build go-temper") {
container("golang-ubuntu") {
sh """
apt update
apt install --yes --no-install-recommends libusb-1.0-0-dev gcc g++
apt-get update
apt-get install --yes --no-install-recommends libusb-1.0-0-dev gcc g++
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
apt install --yes --no-install-recommends git
apt-get install --yes --no-install-recommends git
fi
if [ ! "/usr/bin/upx" ] || [ ! -x "/usr/bin/upx" ]; then
apt install --yes --no-install-recommends upx
apt-get install --yes --no-install-recommends upx
fi
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
cd "/go/src/${env.JOB_BASE_NAME}"