From 7ac690e6bd91d99a4bc033c39dd60e85c020dda8 Mon Sep 17 00:00:00 2001 From: Tom Levy Date: Thu, 4 Jan 2024 06:13:29 +1300 Subject: [PATCH] WIP: add more deps Notes: libmagickwand-dev is very large (even with --no-install-recommends). May need DEBIAN_FRONTEND=noninteractive (libmagickwand-dev pulls in tzdata, which asks for the time zone). --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00814637..acd8a7bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: steps: - run: apt-get update - - run: apt-get install -y 'libyaml-0-[0-9]+' libssl1.1 ca-certificates git build-essential # for ruby/setup-ruby + - run: apt-get install -y 'libyaml-0-[0-9]+' libssl1.1 ca-certificates git build-essential libgmp-dev zlib1g-dev libpq-dev libmagickwand-dev # for ruby/setup-ruby and 'bundle install' - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1