mirror of
https://github.com/libusb/libusb
synced 2024-11-21 06:26:10 -07:00
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:
parent
a8f77014a1
commit
30a44345b4
3 changed files with 11 additions and 7 deletions
3
.github/workflows/linux.yml
vendored
3
.github/workflows/linux.yml
vendored
|
@ -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
|
||||
|
|
13
.github/workflows/msys2.yml
vendored
13
.github/workflows/msys2.yml
vendored
|
@ -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
|
||||
|
|
|
@ -1 +1 @@
|
|||
#define LIBUSB_NANO 11834
|
||||
#define LIBUSB_NANO 11835
|
||||
|
|
Loading…
Reference in a new issue