diff options
author | Yuri Sizov <11782833+YuriSizov@users.noreply.github.com> | 2023-02-06 22:50:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-06 22:50:49 +0300 |
commit | bcc3dff7f4564269b93ede164b0b4f24fbd8c7e5 (patch) | |
tree | 4a1bf077a681708fb130831f71d291e85db3b4ae /.github/workflows/static_checks.yml | |
parent | 5eb2011423fd96d42f97757b6e582712498180c3 (diff) | |
parent | da124e9d04b2cd3d7be43f5653a6ffb2747a1c4a (diff) |
Merge pull request #72801 from akien-mga/ci-linux-custom-repos-swiftshader
CI: Remove custom Linux deps and SwiftShader
Diffstat (limited to '.github/workflows/static_checks.yml')
-rw-r--r-- | .github/workflows/static_checks.yml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index eece270dd9..a3722e19ce 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -13,17 +13,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 - # Azure repositories are not reliable, we need to prevent Azure giving us packages. - - name: Make apt sources.list use the default Ubuntu repositories + - name: Install dependencies run: | - sudo rm -f /etc/apt/sources.list.d/* - sudo cp -f misc/ci/sources.list /etc/apt/sources.list wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main" sudo apt-get update - - - name: Install dependencies - run: | sudo apt-get install -qq dos2unix clang-format-15 libxml2-utils python3-pip moreutils sudo update-alternatives --remove-all clang-format || true sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-15 100 |