close
Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
review
  • Loading branch information
danmar committed Jun 19, 2026
commit dff55ca55b1d5164b148c8fa6da5997677f42cf2
4 changes: 2 additions & 2 deletions .github/workflows/CI-unixish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- image: "alpine:3.23"
with_gui: false # it appears FindQt6.cmake is not provided by any package
full_build: false # FIXME: test-signalhandler.cpp fails to build since feenableexcept() is missing
- image: "oraclelinux:8"
- image: "oraclelinux:8-slim"
with_gui: false # no qt6 are installed, missing GUI in old distros is OK
full_build: true
fail-fast: false # Prefer quick result
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:

strategy:
matrix:
image: ["ubuntu:24.04", "ubuntu:25.10", "alpine:3.23", "oraclelinux:8"]
image: ["ubuntu:24.04", "ubuntu:25.10", "alpine:3.23", "oraclelinux:8-slim"]
fail-fast: false # Prefer quick result

runs-on: ubuntu-22.04
Expand Down
4 changes: 1 addition & 3 deletions lib/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,7 @@
#if defined(__GNUC__) && !defined(__clang__) && __GNUC__ <= 9
// Hack to workaround GCC bug.
// Details: https://trac.cppcheck.net/ticket/14850
// seen on:
// oraclelinux:8, g++-8.5
// ubuntu:20.04, g++-9.4.0
// seen on g++ before 10.x
#define CPPCHECK_NOEXCEPT
#else
#define CPPCHECK_NOEXCEPT noexcept
Expand Down Expand Up @@ -127,8 +125,8 @@

Settings(Settings&&) CPPCHECK_NOEXCEPT;
Comment thread
danmar marked this conversation as resolved.
Dismissed
Comment thread
danmar marked this conversation as resolved.
Dismissed
Settings& operator=(Settings&&) CPPCHECK_NOEXCEPT;
Comment thread
danmar marked this conversation as resolved.
Dismissed
Comment thread
danmar marked this conversation as resolved.
Dismissed

static std::string loadCppcheckCfg(Settings& settings, Suppressions& suppressions, bool debug = false);

Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
static std::pair<std::string, std::string> getNameAndVersion(const std::string& productName);

Expand Down
Loading