CI: Add Linux and MSYS build with logging disabled

Closes #1357

Signed-off-by: Tormod Volden <debian.tormod@gmail.com>
This commit is contained in:
Tormod Volden 2023-12-01 11:25:09 +01:00
parent a8f77014a1
commit 30a44345b4
3 changed files with 11 additions and 7 deletions

View file

@ -35,6 +35,9 @@ jobs:
- name: debug-log
run: .private/ci-build.sh --build-dir build-debug -- --enable-debug-log
- name: disable-log
run: .private/ci-build.sh --build-dir build-nolog -- --disable-log
- uses: mymindstorm/setup-emsdk@v13
- run: npm ci

View file

@ -14,9 +14,10 @@ jobs:
msystem: MINGW64
update: true
install: git mingw-w64-x86_64-cc mingw-w64-x86_64-autotools
- name: CI-Build
run: |
echo 'Running in MSYS2!'
./bootstrap.sh
# GCC on MSYS2 doesn't have ASAN support (but Clang does).
./.private/ci-build.sh --build-dir build-msys2 --no-asan
- name: bootstrap
run: ./bootstrap.sh
- name: Build
# GCC on MSYS2 doesn't have ASAN support (but Clang does).
run: ./.private/ci-build.sh --build-dir build-msys2 --no-asan
- name: Build with logging disabled
run: ./.private/ci-build.sh --build-dir build-msys2-nolog --no-asan -- --disable-log

View file

@ -1 +1 @@
#define LIBUSB_NANO 11834
#define LIBUSB_NANO 11835