We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6faba0 commit bcdfe15Copy full SHA for bcdfe15
1 file changed
.azure-pipelines.yml
@@ -153,7 +153,9 @@ stages:
153
displayName: Get CCache
154
- bash: |
155
set -ex
156
-
+ if ! command -v "$B2_COMPILER" &> /dev/null && [[ "${{item.os}}" == "ubuntu"* ]]; then
157
+ sudo apt-get -o Acquire::Retries=$NET_RETRY_COUNT -y -q --no-install-suggests --no-install-recommends install "$B2_COMPILER"
158
+ fi
159
for ((i=1; i <= NET_RETRY_COUNT; i++)); do
160
git clone --depth 1 --branch master https://github.com/boostorg/boost-ci.git boost-ci-cloned && break || sleep 10
161
done
0 commit comments