Skip to content
Closed
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
3 changes: 2 additions & 1 deletion .clusterfuzzlite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ FROM gcr.io/oss-fuzz-base/base-builder:v1

RUN apt-get update && apt-get install -y \
build-essential ninja-build cmake make \
libreadline-dev libunwind-dev zlib1g-dev
libreadline-dev libunwind-dev zlib1g-dev \
protobuf-compiler libprotobuf-dev

COPY . $SRC/lua-c-api-tests
WORKDIR $SRC/lua-c-api-tests
Expand Down
1 change: 1 addition & 0 deletions .clusterfuzzlite/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ esac
cmake_args=(
-DUSE_LUAJIT=ON
-DOSS_FUZZ=ON
-DENABLE_BUILD_PROTOBUF=OFF
$SANITIZERS_ARGS

# C compiler
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cflite_batch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions: read-all

jobs:
luajit:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cflite_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all

jobs:
luajit:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cflite_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# are covered by fuzzing.

Coverage:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
# code coverage.

Pruning:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cflite_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ permissions: read-all

jobs:
luajit:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"ENABLE_BUILD_PROTOBUF": {
"type": "BOOL",
"value": "FALSE"
"value": "TRUE"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion cmake/ProtobufMutator.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ include (ExternalProject)
ExternalProject_Add(${LPM_TARGET}
PREFIX ${LPM_TARGET}
GIT_REPOSITORY ${LPM_REPO}
GIT_TAG 212a7be
GIT_TAG v1.3
UPDATE_COMMAND ""
CONFIGURE_COMMAND ${CMAKE_COMMAND} ${LPM_INSTALL_DIR}/src/${LPM_TARGET}
-G${CMAKE_GENERATOR}
Expand Down
Loading