summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-12-08 12:28:51 +0100
committerPauli <pauli@openssl.org>2022-12-09 09:21:37 +1100
commitbc136fd386b345729700f0c6a3a652f9e869d0df (patch)
treef8ca257f72e1d491a9ce3ac29e6365e21408cbbe /.github
parent8face2721b78cc1d60e187678b72252a3c0e61da (diff)
Cross compiles CI: Disable stringop-overflow warning on s390x and m68k
These warnings trigger on false positives on these platforms with recent compiler update. Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19860) (cherry picked from commit 8b63a305bf2db0e980cb76040fa66a17f781d6c7)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cross-compiles.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml
index be367bb1c5..31b6cbd3f1 100644
--- a/.github/workflows/cross-compiles.yml
+++ b/.github/workflows/cross-compiles.yml
@@ -58,7 +58,7 @@ jobs:
}, {
arch: m68k-linux-gnu,
libs: libc6-dev-m68k-cross,
- target: -static -m68040 linux-latomic,
+ target: -static -m68040 linux-latomic -Wno-stringop-overflow,
fips: no,
tests: -test_includes -test_store -test_x509_store
}, {
@@ -88,7 +88,7 @@ jobs:
}, {
arch: s390x-linux-gnu,
libs: libc6-dev-s390x-cross,
- target: linux64-s390x
+ target: linux64-s390x -Wno-stringop-overflow
}, {
arch: sh4-linux-gnu,
libs: libc6-dev-sh4-cross,
@@ -107,7 +107,7 @@ jobs:
}, {
arch: m68k-linux-gnu,
libs: libc6-dev-m68k-cross,
- target: -mcfv4e linux-latomic,
+ target: -mcfv4e linux-latomic -Wno-stringop-overflow,
tests: none
}, {
arch: mips-linux-gnu,