Skip to content

Commit 5d9fcda

Browse files
authored
Replace Fedora 36 with Fedora 38 in GitHub Actions (#323)
1 parent 5d70617 commit 5d9fcda

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/actions/cmake/build/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ runs:
1111

1212
- name: Prepare `build` directory
1313
run: |
14-
cmake -S . -B build \
14+
cmake -B build -S . \
1515
-LA \
16-
-DCMAKE_BUILD_TYPE=${BUILD_TYPE:-Debug} \
17-
-DCMAKE_INSTALL_PREFIX=${INSTALL_PREFIX:-/usr/local} \
18-
-DENABLE_TESTS=1
16+
-DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE:-Debug} \
17+
-DCMAKE_INSTALL_PREFIX:PATH=${INSTALL_PREFIX:-/usr/local} \
18+
-DENABLE_TESTS:BOOL=ON
1919
shell: bash --noprofile --norc -euxo pipefail {0}
2020

2121
- name: Build `mod_tile`

.github/actions/dependencies/build-and-install/mapnik/latest/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
cmake -S mapnik-src -B mapnik-build \
2626
-DBUILD_DEMO_VIEWER:BOOL=OFF \
2727
-DBUILD_TESTING:BOOL=OFF \
28-
-DCMAKE_BUILD_TYPE=Release \
28+
-DCMAKE_BUILD_TYPE:STRING=Release \
2929
-DCMAKE_INSTALL_PREFIX:PATH=/usr
3030
cmake --build mapnik-build
3131
shell: bash --noprofile --norc -euxo pipefail {0}

.github/actions/dependencies/install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ inputs:
7878
gdal-devel
7979
harfbuzz-devel
8080
libicu-devel
81-
libjpeg-turbo-devel
81+
libjpeg-devel
8282
libpng-devel
8383
libtiff-devel
8484
libwebp-devel

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
- 'debian:11'
2121
- 'debian:12'
2222
- 'debian:testing'
23-
- 'fedora:36'
2423
- 'fedora:37'
24+
- 'fedora:38'
2525
- 'fedora:rawhide'
2626
- 'ubuntu:20.04'
2727
build_system:

0 commit comments

Comments
 (0)