Add action to the pr workflow that checks building the module with logging

This commit is contained in:
Maschell 2022-04-23 09:17:05 +02:00
parent 1f6ab2987d
commit 8faecb1434
1 changed files with 12 additions and 1 deletions

View File

@ -10,6 +10,17 @@ jobs:
- name: clang-format
run: |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src
check-build-with-logging:
runs-on: ubuntu-18.04
needs: clang-format
steps:
- uses: actions/checkout@v2
- name: build binary with logging
run: |
docker build . -t builder
docker run --rm -v ${PWD}:/project builder make DEBUG=VERBOSE
docker run --rm -v ${PWD}:/project builder make clean
docker run --rm -v ${PWD}:/project builder make DEBUG=1
build-binary:
runs-on: ubuntu-18.04
needs: clang-format
@ -22,4 +33,4 @@ jobs:
- uses: actions/upload-artifact@master
with:
name: binary
path: "*.wms"
path: "*.wms"