Skip to content

Commit dcdc6d5

Browse files
committed
Run autoreconf in the main Linux build.
1 parent a5fb4c0 commit dcdc6d5

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Build Linux
1515
container:
1616
image: ubuntu:20.04
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24.04
1818

1919
strategy:
2020
fail-fast: false
@@ -34,12 +34,14 @@ jobs:
3434
set -e
3535
export DEBIAN_FRONTEND=noninteractive
3636
apt-get update -y
37-
apt-get install -y autoconf make pkg-config ${{matrix.packages}}
37+
apt-get install -y autoconf git libtool make pkg-config ${{matrix.packages}}
3838
3939
- name: Configure ImageMagick
40+
env:
41+
CC: ${{ matrix.compiler }}
42+
CFLAGS: -Wno-deprecated-declarations
4043
run: |
41-
export CC=${{matrix.compiler}}
42-
export CFLAGS="-Wno-deprecated-declarations"
44+
autoreconf -fiv
4345
./configure --with-quantum-depth=16 --enable-hdri=no --without-perl --prefix=/usr
4446
4547
- name: Build ImageMagick

0 commit comments

Comments
 (0)