We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f20ee6 commit 19a4346Copy full SHA for 19a4346
1 file changed
.github/workflows/linux.yml
@@ -145,8 +145,13 @@ jobs:
145
if: ${{ matrix.cxx == 'clang++-3.6' }}
146
147
- name: Add repositories for newer GCC
148
+ # Avoid `apt-add-repository ppa:...`, which hits the Launchpad REST API
149
+ # and intermittently times out on GitHub-hosted runners.
150
run: |
- sudo apt-add-repository ppa:ubuntu-toolchain-r/test
151
+ curl -fsSL 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x60C317803A41BA51845E371A1E9377A2BA9EF27F' \
152
+ | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/ubuntu-toolchain-r.gpg
153
+ echo 'deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu jammy main' \
154
+ | sudo tee /etc/apt/sources.list.d/ubuntu-toolchain-r.list
155
if: ${{ matrix.cxx == 'g++-13' || matrix.cxx == 'g++-15' }}
156
157
- name: Install LLVM-20
0 commit comments