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 /.github/workflows/cmake.yml | |
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 '.github/workflows/cmake.yml')
-rw-r--r-- | .github/workflows/cmake.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 0e190afac1..ccad4c02ab 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -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 |