diff --git a/Jenkinsfile b/Jenkinsfile index 7949e35e08..d846f60f70 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { choice(name: "CHANNEL", choices: ["nightly", "dev", "beta", "release", "development"], description: "") string(name: "SLACK_BUILDS_CHANNEL", defaultValue: "#build-downloads-bot", description: "The Slack channel to send the list of artifact download links to. Leave blank to skip sending the message.") booleanParam(name: "SKIP_SIGNING", defaultValue: true, description: "") - booleanParam(name: "WIPE_WORKSPACE", defaultValue: false, description: "") + booleanParam(name: "WIPE_WORKSPACE", defaultValue: true, description: "") booleanParam(name: "SKIP_INIT", defaultValue: false, description: "") booleanParam(name: "DISABLE_SCCACHE", defaultValue: false, description: "") booleanParam(name: "DCHECK_ALWAYS_ON", defaultValue: true, description: "") @@ -272,6 +272,7 @@ pipeline { agent { label "linux-ci" } environment { GIT_CACHE_PATH = "${HOME}/cache" + NO_AUTH_BOTO_CONFIG = "/home/ubuntu/.boto" } stages { stage("checkout") { @@ -318,8 +319,34 @@ pipeline { } steps { sh """ + sudo DEBIAN_FRONTEND=noninteractive apt-get -q update + sudo DEBIAN_FRONTEND=noninteractive apt-get -q -y install squid + +echo > /home/ubuntu/.boto <