From a29b923b971112e7d1761c2805011416c6938a22 Mon Sep 17 00:00:00 2001 From: Alexander Batashev Date: Wed, 15 Sep 2021 19:27:11 +0300 Subject: [PATCH 1/2] [CI] Switch GitHub Actions to Ubuntu 20.04 --- .github/workflows/linux_post_commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux_post_commit.yml b/.github/workflows/linux_post_commit.yml index 96de8e37d47bc..527f3f6898128 100644 --- a/.github/workflows/linux_post_commit.yml +++ b/.github/workflows/linux_post_commit.yml @@ -6,7 +6,7 @@ on: - sycl jobs: check: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 if: github.repository == 'intel/llvm' strategy: fail-fast: false From 4343d736d31d59bb2bd60bace1c6130fbc6d84bc Mon Sep 17 00:00:00 2001 From: Alexander Batashev Date: Thu, 16 Sep 2021 09:31:29 +0300 Subject: [PATCH 2/2] bionic -> focal --- .github/workflows/linux_post_commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux_post_commit.yml b/.github/workflows/linux_post_commit.yml index 527f3f6898128..9c16106e5f0a9 100644 --- a/.github/workflows/linux_post_commit.yml +++ b/.github/workflows/linux_post_commit.yml @@ -28,7 +28,7 @@ jobs: ;; SharedLibs) wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - - sudo add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-13 main" + sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main" sudo apt-get update sudo apt-get install -y clang-13 export ARGS="--shared-libs"