Skip to content

Commit 9c2d852

Browse files
authored
Migrate cifuzz-example to Ubuntu 24.04 (#14386)
### Summary This pull request migrates the `cifuzz-example` project to use the new `ubuntu-24-04` base image for fuzzing. ### Changes in this PR 1. **`projects/cifuzz-example/project.yaml`**: Sets the `base_os_version` property to `ubuntu-24-04`. 2. **`projects/cifuzz-example/Dockerfile`**: Updates the `FROM` instruction. CC: [email protected]
1 parent 525e1b9 commit 9c2d852

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

projects/cifuzz-example/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515
################################################################################
1616

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

1919
RUN git clone https://github.com/jonathanmetzman/cifuzz-example.git --depth 1
2020
WORKDIR cifuzz-example

projects/cifuzz-example/project.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
base_os_version: ubuntu-24-04
12
language: c++
23
sanitizers:
34
- address

0 commit comments

Comments
 (0)