summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormbkma <[email protected]>2025-08-14 22:32:39 +0200
committerLuke from DC <[email protected]>2025-08-21 04:18:04 +0000
commit802b1f7e502e73f878f2d90e2854432dd9cc0186 (patch)
tree91e67b4456a886b46f3aed7e0e87aadcc2c39738
parented3d1a39b9543bb0acec8b824e1e999952ccb123 (diff)
downloadmate-calc-802b1f7e502e73f878f2d90e2854432dd9cc0186.tar.bz2
mate-calc-802b1f7e502e73f878f2d90e2854432dd9cc0186.tar.xz
update github actions
-rw-r--r--.github/workflows/build.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7d24ac4..dc7143a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -91,8 +91,9 @@ jobs:
- name: Run cppcheck (Debian only)
if: matrix.distro_name == 'debian'
+ shell: bash
run: |
- export CFLAGS+=" -Wsign-compare"
+ export CFLAGS="${CFLAGS:-} -Wsign-compare"
cppcheck --enable=warning,style,performance,portability,information,missingInclude .
- name: Generate build system
@@ -104,6 +105,7 @@ jobs:
scan-build $CHECKERS ./configure --enable-compile-warnings=maximum
- name: Build with scan-build
+ shell: bash
run: |
if [ $CPU_COUNT -gt 1 ]; then
if [ "$DISTRO_NAME" == "debian" ]; then