Skip to content

Commit 157464e

Browse files
authored
[CI]Switch back to 18.04 Ubuntu (#1033)
20.04 and 18.04 have both the same issues. Due to issues detected on Azure CI we need to switch back to 18.04 urgently. Issue is related to some temporary IP reachability error on cloud: 404 Not Found [IP: 51.104.174.161 80] Add --fix-missing and apt-get update Relates-To: OLPEDGE-2119 Signed-off-by: Yaroslav Stefinko <ext-yaroslav.stefinko@here.com>
1 parent 85fa2da commit 157464e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868

6969
- job: Linux_build_clang
7070
pool:
71-
vmImage: 'ubuntu-20.04'
71+
vmImage: 'ubuntu-latest'
7272
variables:
7373
LD_PRELOAD: "/lib/x86_64-linux-gnu/libSegFault.so"
7474
SEGFAULT_SIGNALS: "all"
@@ -77,7 +77,8 @@ jobs:
7777
CCACHE_DIR: $(Pipeline.Workspace)/ccache
7878
steps:
7979
- bash: |
80-
sudo apt-get install libcurl4-openssl-dev clang-7 ccache -y --no-install-recommends
80+
sudo apt-get update -y
81+
sudo apt-get install clang-7 ccache libcurl4-openssl-dev -y --no-install-recommends --fix-missing
8182
echo "##vso[task.prependpath]/usr/lib/ccache"
8283
echo week_$(date +%W) > week_number.txt
8384
displayName: 'Install dependencies'

0 commit comments

Comments
 (0)