diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-11-25 18:13:10 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-11-26 09:40:07 +0100 |
commit | 1adc3530b22cec4def8da157ad8181ee4d756408 (patch) | |
tree | e0b9615d1c10a1c50f203da494857d2bb9c66b87 /Meta | |
parent | bad3e2a089bc6dae9c33426a5370c225d8b6139d (diff) | |
download | serenity-1adc3530b22cec4def8da157ad8181ee4d756408.zip |
CI: Install gcc-12 for Android nightly CI job
This *also* got missed in the gcc-12 update, because we weren't
installing an explicit gcc version prior. Hopefully that's the last of
the long tail of issues from that migration!
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/Azure/Setup.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Meta/Azure/Setup.yml b/Meta/Azure/Setup.yml index 21aaf77d24..97fc47f662 100644 --- a/Meta/Azure/Setup.yml +++ b/Meta/Azure/Setup.yml @@ -39,5 +39,7 @@ steps: - ${{ if eq(parameters.os, 'Android') }}: - script: | - sudo apt-get install ccache ninja-build unzip + sudo apt-get install ccache gcc-12 g++-12 libstdc++-12-dev ninja-build unzip + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 100 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 100 displayName: 'Install Dependencies' |