Skip to content

Commit

Permalink
ignore faulty compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
likle committed Jan 7, 2024
1 parent 68e9013 commit 7d4c207
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-freebsd.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Build on FreeBSD
on:
push:
branches: [ "master" ]
branches: [ "**" ]
pull_request:
branches: [ "master" ]
branches: [ "**" ]
jobs:
build:
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Build on Linux
on:
push:
branches: [ "master" ]
branches: [ "**" ]
pull_request:
branches: [ "master" ]
branches: [ "**" ]
jobs:
build:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -39,4 +39,4 @@ jobs:
run: ctest --build-config ${{ matrix.build_type }}
- name: Coverage
working-directory: ${{ steps.strings.outputs.build-output-dir }}
run: bash <(curl -s https://codecov.io/bash) -X gcov
run: bash <(curl -s https://codecov.io/bash)
4 changes: 2 additions & 2 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Build on macOS
on:
push:
branches: [ "master" ]
branches: [ "**" ]
pull_request:
branches: [ "master" ]
branches: [ "**" ]
jobs:
build:
runs-on: ${{ matrix.os }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-win.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Build on Windows
on:
push:
branches: [ "master" ]
branches: [ "**" ]
pull_request:
branches: [ "master" ]
branches: [ "**" ]
jobs:
build:
runs-on: ${{ matrix.os }}
Expand All @@ -26,6 +26,7 @@ jobs:
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DCMAKE_C_FLAGS=/wd5105
-DENABLE_TESTS=1
-DENABLE_DEMO=1
-S ${{ github.workspace }}
Expand Down

0 comments on commit 7d4c207

Please sign in to comment.