diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-08-09 00:31:56 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-08-09 00:47:01 -0400 |
commit | 2f079be9965f73e40c3ff1e94cd8eaad20f93767 (patch) | |
tree | 328393c93783c9b6f2eb4be457cd123fac225e0a | |
parent | 0ec039d2597526c670f7e0478a7b5008e14ff474 (diff) | |
download | meson-2f079be9965f73e40c3ff1e94cd8eaad20f93767.zip meson-2f079be9965f73e40c3ff1e94cd8eaad20f93767.tar.gz meson-2f079be9965f73e40c3ff1e94cd8eaad20f93767.tar.bz2 |
CI: include zlib devel package for the mingw cross tests
After a recent CI image builder update successfully ran the tests, but
didn't run the cross tests, it updated the image that then got used by
the regular CI cross tests. Somehow this resulted in a bunch of tests
now failing because zlib could not be picked up. We probably dropped a
transitive dependency somewhere. Anyway, it's correct to explicitly
specify it if we need it.
-rwxr-xr-x | ci/ciimage/ubuntu-rolling/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/ciimage/ubuntu-rolling/install.sh b/ci/ciimage/ubuntu-rolling/install.sh index 8c32334..697ef06 100755 --- a/ci/ciimage/ubuntu-rolling/install.sh +++ b/ci/ciimage/ubuntu-rolling/install.sh @@ -15,7 +15,7 @@ pkgs=( libomp-dev llvm lcov dub ldc - mingw-w64 mingw-w64-tools + mingw-w64 mingw-w64-tools libz-mingw-w64-dev libclang-dev libgcrypt20-dev libgpgme-dev |