diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-08-26 17:11:41 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-26 23:40:23 +0200 |
commit | 9663525542affc35baecbfa6196a1032f2e3abd0 (patch) | |
tree | 2493c2df4f3b24d4ccddb01851ddeeddcc8513ea /Meta/Azure | |
parent | a061d874c90d30b4c88234b1de6511a9a016b1db (diff) | |
download | serenity-9663525542affc35baecbfa6196a1032f2e3abd0.zip |
CI: Ensure unzip is installed on the builders
The CLDR database comes in a .zip file.
Diffstat (limited to 'Meta/Azure')
-rw-r--r-- | Meta/Azure/Setup.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Meta/Azure/Setup.yml b/Meta/Azure/Setup.yml index 4e61127570..ef719a80e0 100644 --- a/Meta/Azure/Setup.yml +++ b/Meta/Azure/Setup.yml @@ -9,14 +9,14 @@ steps: - script: | sudo add-apt-repository ppa:canonical-server/server-backports sudo apt-get update - sudo apt-get install libmpfr-dev libmpc-dev ninja-build e2fsprogs qemu-utils qemu-system-i386 ccache + sudo apt-get install libmpfr-dev libmpc-dev ninja-build e2fsprogs qemu-utils qemu-system-i386 ccache unzip displayName: 'Install Dependencies' - ${{ if eq(parameters.os, 'Linux') }}: - script: | sudo apt-get purge -y clang-11 sudo apt-get update - sudo apt-get install ninja-build ccache + sudo apt-get install ninja-build ccache unzip sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-12 100 sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-12 100 @@ -28,5 +28,5 @@ steps: - ${{ if eq(parameters.os, 'macOS') }}: - script: | - brew install ninja wabt ccache + brew install ninja wabt ccache unzip displayName: 'Install Dependencies' |