From b95d300e73f47603d674bb90e5a5bf6157b891a8 Mon Sep 17 00:00:00 2001 From: ado Date: Sun, 3 Mar 2024 02:11:28 +0100 Subject: [PATCH] [skip ci] Try to fix fuzz ci --- .github/workflows/fuzz.yml | 4 ---- fuzz/makefile | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 4a174c4..46169d4 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -34,14 +34,10 @@ jobs: env: CC: clang CXX: clang++ - CXXFLAGS: -stdlib=libc++ steps: - uses: actions/checkout@v1 - - uses: friendlyanon/fetch-core-count@v1 - id: cores - - name: Install dependencies run: | apt-get update diff --git a/fuzz/makefile b/fuzz/makefile index d1c1adc..a74e23c 100644 --- a/fuzz/makefile +++ b/fuzz/makefile @@ -2,7 +2,7 @@ BIN=ssp_fuzz SRC=ssp_fuzz.cpp all: - ${CXX} ${CXXFLAGS} ${SRC} -fsanitize=fuzzer -std=c++17 -o ${BIN} + ${CXX} ${SRC} -fsanitize=fuzzer -std=c++17 -o ${BIN} run: ./${BIN} -max_total_time=30