CI: Ensure unzip is installed on the builders

The CLDR database comes in a .zip file.
This commit is contained in:
Timothy Flynn 2021-08-26 17:11:41 -04:00 committed by Andreas Kling
parent a061d874c9
commit 9663525542
Notes: sideshowbarker 2024-07-18 05:15:15 +09:00
3 changed files with 5 additions and 5 deletions

View file

@ -47,7 +47,7 @@ jobs:
run: |
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
- name: Install JS dependencies
run: sudo npm install -g prettier@2.2.1
- name: Install Python dependencies

View file

@ -48,7 +48,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install ninja-build
sudo apt-get install ninja-build unzip
- name: Setup Python
uses: actions/setup-python@v2

View file

@ -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'