mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
CI: Ensure unzip is installed on the builders
The CLDR database comes in a .zip file.
This commit is contained in:
parent
a061d874c9
commit
9663525542
Notes:
sideshowbarker
2024-07-18 05:15:15 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/9663525542a Pull-request: https://github.com/SerenityOS/serenity/pull/9620 Reviewed-by: https://github.com/IdanHo ✅
3 changed files with 5 additions and 5 deletions
2
.github/workflows/cmake.yml
vendored
2
.github/workflows/cmake.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/libjs-test262.yml
vendored
2
.github/workflows/libjs-test262.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue