aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2022-03-25 15:39:04 +0200
committerMatias Elo <matias.elo@nokia.com>2022-10-07 09:57:20 +0300
commit5e2d80ee3dd8e5a4951730c05206dcb1e56517ed (patch)
treecb5581b0cfe232c6014e932bfe92d78e2e84ebb3 /scripts
parent99017447a16e114a8921b1f098ad9a30cd934c49 (diff)
github_ci: change default test image to ubuntu 20.04
Upgrade default test image from Ubuntu 18.04 to 20.04. i386 cross- compilation stays on Ubuntu 18.04 as 20.04 dropped support for i386. Default GCC version changes to 9 and Clang to 10. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/build_ppc64el.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/ci/build_ppc64el.sh b/scripts/ci/build_ppc64el.sh
index 984481bb5..93dd36290 100755
--- a/scripts/ci/build_ppc64el.sh
+++ b/scripts/ci/build_ppc64el.sh
@@ -7,6 +7,10 @@ if [ "${CC#clang}" != "${CC}" ] ; then
export CXX="clang++ --target=${TARGET_ARCH}"
# DPDK clang build broken
export CONF="${CONF} --disable-dpdk"
+
+ # Ignore warnings about large atomic operation performance penalty
+ export ODP_CFLAGS_EXTRA=-Wno-error=atomic-alignment
+
else
export CC="${TARGET_ARCH}-gcc"
export CXX="${TARGET_ARCH}-g++"