Skip to content

Commit

Permalink
GH Actions ARM build fix
Browse files Browse the repository at this point in the history
`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...
  • Loading branch information
galfar committed Jul 24, 2024
1 parent 03a35f6 commit 3a07e73
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build-on-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 3a07e73

Please sign in to comment.