1
0
Fork 0

Codefix 3e747397f0: Also upgrade preview workflow (#13438)

pull/13444/head
Loïc Guilloux 2025-02-02 13:39:33 +01:00 committed by GitHub
parent 7a49691954
commit 9238cb7270
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -35,6 +35,13 @@ jobs:
git config --global --add safe.directory ${GITHUB_WORKSPACE}
git checkout -b pr${{ github.event.pull_request.number }}
- name: Update to modern GCC
run: |
apt-get update
apt-get install -y gcc-12 g++-12
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 100
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 100
- name: Setup cache
uses: actions/cache@v4
with: