Skip to content

Commit

Permalink
Bump GitHub Actions libvips to 8.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Dec 25, 2023
1 parent 8665a98 commit 2047d41
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
# - os: ubuntu-22.04
# libvips-version: master
- os: ubuntu-22.04
libvips-version: 8.14.5
libvips-version: 8.15.1
coverage: true
steps:
- uses: actions/checkout@v4
Expand All @@ -44,16 +44,17 @@ jobs:
meson \
libcgif-dev libexif-dev libexpat1-dev \
libheif-dev libimagequant-dev liblcms2-dev \
libmagickcore-dev liborc-0.4-dev libpango1.0-dev \
libmagickcore-dev libhwy-dev libpango1.0-dev \
libpng-dev libpoppler-glib-dev librsvg2-dev \
libtiff5-dev libwebp-dev \
libtest-nginx-perl
libtest-nginx-perl \
liborc-0.4-dev # FIXME: Remove once libhwy 1.0.5 is available.
- name: Install libvips
if: steps.cache-libvips.outputs.cache-hit != 'true'
env:
VIPS_VERSION: ${{ matrix.libvips-version }}
VIPS_PRE_VERSION: ${{ matrix.libvips-pre-version }}
run: .ci/install-vips.sh -Ddeprecated=false -Dintrospection=false
run: .ci/install-vips.sh -Ddeprecated=false -Dintrospection=disabled
- name: Prepare environment
run: |
echo "$HOME/vips/bin" >> $GITHUB_PATH
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Expand Up @@ -27,7 +27,7 @@ dnf install --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-re
# Enable Remi's RPM repository
dnf config-manager --set-enabled remi

# Install libvips 8.14 (full-fat version)
# Install libvips 8.15 (full-fat version)
dnf install vips-devel vips-heif vips-magick-im6

# Install build requirements
Expand Down
2 changes: 1 addition & 1 deletion test/api/exceptions/unit-timeout.cpp
Expand Up @@ -7,7 +7,7 @@ using Catch::Matchers::Contains;
TEST_CASE("process timeout", "[timeout]") {
SECTION("image") {
auto test_image = fixtures->input_jpg;
auto params = "blur=100";
auto params = "blur=300";
auto config = Config();
config.process_timeout = 1;

Expand Down

0 comments on commit 2047d41

Please sign in to comment.