mirror of
https://github.com/clearml/dropbear
synced 2025-03-05 19:52:24 +00:00
Add build test with DEBUG_TRACE 5
This commit is contained in:
parent
d142639e38
commit
ce745e98c0
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
@ -11,6 +11,9 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os || 'ubuntu-20.04' }}
|
runs-on: ${{ matrix.os || 'ubuntu-20.04' }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
# XXX keeps act happy, https://github.com/nektos/act/issues/996
|
||||||
|
name: []
|
||||||
|
|
||||||
# Rather than a boolean False we use eg
|
# Rather than a boolean False we use eg
|
||||||
# runcheck: 'no'
|
# runcheck: 'no'
|
||||||
# Otherwise GH expressions will make a None var
|
# Otherwise GH expressions will make a None var
|
||||||
@ -59,6 +62,10 @@ jobs:
|
|||||||
apt: 'no'
|
apt: 'no'
|
||||||
ranlib: ranlib -no_warning_for_no_symbols
|
ranlib: ranlib -no_warning_for_no_symbols
|
||||||
|
|
||||||
|
- name: DEBUG_TRACE
|
||||||
|
localoptions: |
|
||||||
|
#define DEBUG_TRACE 5
|
||||||
|
|
||||||
# # Fuzzers run standalone. A bit superfluous with cifuzz, but
|
# # Fuzzers run standalone. A bit superfluous with cifuzz, but
|
||||||
# # good to run the whole corpus to keep it working.
|
# # good to run the whole corpus to keep it working.
|
||||||
# - name: fuzzing with address sanitizer
|
# - name: fuzzing with address sanitizer
|
||||||
@ -93,6 +100,7 @@ jobs:
|
|||||||
PYTEST_ADDOPTS: ${{ matrix.pytest_addopts }}
|
PYTEST_ADDOPTS: ${{ matrix.pytest_addopts }}
|
||||||
# some pytests depend on special setup from this file. see authorized_keys below.
|
# some pytests depend on special setup from this file. see authorized_keys below.
|
||||||
DBTEST_IN_ACTION: true
|
DBTEST_IN_ACTION: true
|
||||||
|
LOCALOPTIONS: ${{ matrix.localoptions }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: deps
|
- name: deps
|
||||||
@ -110,6 +118,11 @@ jobs:
|
|||||||
if: ${{ matrix.nowritev }}
|
if: ${{ matrix.nowritev }}
|
||||||
run: sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h
|
run: sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h
|
||||||
|
|
||||||
|
- name: localoptions
|
||||||
|
run: |
|
||||||
|
echo "$LOCALOPTIONS" > localoptions.h
|
||||||
|
cat localoptions.h
|
||||||
|
|
||||||
- name: make
|
- name: make
|
||||||
run: make -j3
|
run: make -j3
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user