From 3a07e73b50e901e774764dc4b859e2802026b57d Mon Sep 17 00:00:00 2001 From: Marek Mauder Date: Wed, 24 Jul 2024 23:53:26 +0200 Subject: [PATCH] GH Actions ARM build fix `ubuntu_latest` in `run-on-arch-action` switched to 24.04 and there is no more `libtiff5` package. Stick to 22.04 for now. Deskew probably needs to be updated for newer libtiff... --- .github/workflows/build-on-arm.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-on-arm.yml b/.github/workflows/build-on-arm.yml index 67fe3b8..3ae3187 100644 --- a/.github/workflows/build-on-arm.yml +++ b/.github/workflows/build-on-arm.yml @@ -16,9 +16,9 @@ jobs: matrix: include: - arch: aarch64 - distro: ubuntu_latest + distro: ubuntu22.04 - arch: armv7 - distro: ubuntu_latest + distro: ubuntu22.04 steps: - uses: actions/checkout@v4 @@ -32,12 +32,15 @@ jobs: githubToken: ${{ github.token }} install: | + echo "OS:" $(uname -a) + apt-get update apt-get -y install fpc + # ubuntu 22.04 is the last with libtiff5, newer have libtiff6 apt-get -y install libtiff5 run: | - echo "FPC:" $(fpc -iWTPTO) + echo "FPC:" $(fpc -iWTPTO) echo "OS:" $(uname -a) ./Scripts/compile.sh