Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions projects/gdal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@
#
################################################################################

FROM gcr.io/oss-fuzz-base/base-builder
FROM gcr.io/oss-fuzz-base/base-builder:ubuntu-24-04

RUN apt-get update && \
apt-get install -y make autoconf automake libtool g++ curl cmake sqlite3 pkg-config

RUN git clone --depth 1 https://github.com/OSGeo/gdal gdal
# Using this temporary branch while the pull request in google/ossfuzz has not been yet merged
# Once it has been, this ossfuzz_ubuntu_2404 branch will be merged back to OSGeo/gdal master
RUN git clone --depth 1 --branch ossfuzz_ubuntu_2404 https://github.com/rouault/gdal gdal
#RUN git clone --depth 1 https://github.com/OSGeo/gdal gdal

RUN cp gdal/fuzzers/build.sh $SRC/

Expand Down
7 changes: 1 addition & 6 deletions projects/gdal/project.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
base_os_version: ubuntu-24-04
homepage: "https://gdal.org"
language: c++
primary_contact: "even.rouault@gmail.com"
Expand All @@ -15,9 +16,3 @@ architectures:
- x86_64
- i386
main_repo: 'https://github.com/OSGeo/gdal'

fuzzing_engines:
- afl
- honggfuzz
- libfuzzer

Loading