]> git.imager.perl.org - imager.git/blame - .github/workflows/test-linux-i386.yml
1.012 release
[imager.git] / .github / workflows / test-linux-i386.yml
CommitLineData
1a9b32a4
TC
1name: test-linux-i386
2
3on:
4 push:
5 branches:
6 - '**'
7 tags-ignore:
8 - '*'
9 pull_request:
10
11jobs:
12 imager:
13 runs-on: ubuntu-latest
14 timeout-minutes: 10
15 container:
16 image: i386/ubuntu:latest
17 env:
18 WORKSPACE: ${{ github.workspace }}
19 steps:
20 - name: install dependencies
21 run: |
22 apt-get update ||:
23 apt-get -y install build-essential libtiff-dev libpng-dev libgif-dev libfreetype6-dev libjpeg-dev git-core
24 - name: checkout
25 uses: actions/checkout@v1
26 - name: configure
27 run: |
28 perl Makefile.PL
29 - name: build
30 run: |
31 make -j2
32 - name: test
33 run: |
34 HARNESS_OPTIONS=j2 make test