Skip to content

Commit

Permalink
Revert "ci: Split out the fuzz testing"
Browse files Browse the repository at this point in the history
This reverts commit 6bf97ac.
  • Loading branch information
morehouse committed Feb 2, 2024
1 parent 3c9fd0c commit 8a83051
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 68 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,33 @@ jobs:
tar -xaf cln-${{ matrix.CFG }}.tar.bz2
make -j $(nproc) check-units installcheck VALGRIND=${{ matrix.VALGRIND }}
check-fuzz:
name: Run fuzz regression tests
runs-on: ubuntu-22.04
needs:
- prebuild
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Install dependencies
run: |
bash -x .github/scripts/setup.sh
pip install -U pip wheel poetry
# Export and then use pip to install into the current env
poetry export -o /tmp/requirements.txt --without-hashes --with dev
pip install -r /tmp/requirements.txt
- name: Build
run: |
./configure --enable-debugbuild --enable-fuzzing --enable-address-sanitizer --enable-ub-sanitizer --disable-valgrind CC=clang
make -j $(nproc) check-fuzz
integration:
name: Test CLN ${{ matrix.name }}
runs-on: ubuntu-22.04
Expand Down
68 changes: 0 additions & 68 deletions .github/workflows/fuzz.yaml

This file was deleted.

0 comments on commit 8a83051

Please sign in to comment.