apt does not have a stable interface, using apt-get instead.
This commit is contained in:
parent
55df7d740d
commit
0ce03a8c9a
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@ -94,13 +94,13 @@ sonar.go.coverage.reportPaths=cover.out
|
|||||||
stage("Build go-temper") {
|
stage("Build go-temper") {
|
||||||
container("golang-ubuntu") {
|
container("golang-ubuntu") {
|
||||||
sh """
|
sh """
|
||||||
apt update
|
apt-get update
|
||||||
apt install --yes --no-install-recommends libusb-1.0-0-dev gcc g++
|
apt-get install --yes --no-install-recommends libusb-1.0-0-dev gcc g++
|
||||||
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
|
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
|
fi
|
||||||
if [ ! "/usr/bin/upx" ] || [ ! -x "/usr/bin/upx" ]; then
|
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
|
fi
|
||||||
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
|
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
|
||||||
cd "/go/src/${env.JOB_BASE_NAME}"
|
cd "/go/src/${env.JOB_BASE_NAME}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user