Skip to content

Fixed #30: TIFF output compression from input #10

Fixed #30: TIFF output compression from input

Fixed #30: TIFF output compression from input #10

Workflow file for this run

name: Build on ARM
on:
# on each push and manual trigger
push:
branches: [ master ]
paths-ignore: [ "**/Readme.md" ]
workflow_dispatch:
jobs:
build_job:
runs-on: ubuntu-latest
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}
strategy:
matrix:
include:
- arch: aarch64
distro: ubuntu_latest
- arch: armv7
distro: ubuntu_latest
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2
name: Build binaries
id: build
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
githubToken: ${{ github.token }}
install: |
apt-get update
apt-get -y install fpc
apt-get -y install libtiff5
run: |
echo "FPC:" $(fpc -iWTPTO)
echo "OS:" $(uname -a)
./Scripts/compile.sh
cd Bin
./runtests.sh --no-tiff
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: deskew-binaries-${{ matrix.arch }}-${{ matrix.distro }}
path: |
Bin/deskew*
if-no-files-found: error
- name: Upload artifacts
if: github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@v4
with:
name: deskew-artifacts-${{ matrix.arch }}-${{ matrix.distro }}
path: |
Bin
if-no-files-found: error