From ae4a8845b31e1d0aaa57f4d39a6878f9f0e9c894 Mon Sep 17 00:00:00 2001 From: Matias Elo Date: Wed, 2 Nov 2022 10:35:21 +0200 Subject: github_ci: add static build tests to arm64 ci pipeline Add missing static build tests to arm64 GitHub CI pipeline. Signed-off-by: Matias Elo Reviewed-by: Tuomas Taipale --- scripts/ci/build_static.sh | 17 +++++++++++++++++ scripts/ci/build_static_x86_64.sh | 17 ----------------- 2 files changed, 17 insertions(+), 17 deletions(-) create mode 100755 scripts/ci/build_static.sh delete mode 100755 scripts/ci/build_static_x86_64.sh (limited to 'scripts') diff --git a/scripts/ci/build_static.sh b/scripts/ci/build_static.sh new file mode 100755 index 000000000..24d8a2d6a --- /dev/null +++ b/scripts/ci/build_static.sh @@ -0,0 +1,17 @@ +#!/bin/bash +set -e + +CONFIG_OPT="--prefix=/opt/odp ${CONF}" + +cd "$(dirname "$0")"/../.. +./bootstrap +echo "./configure $CONFIG_OPT" +./configure $CONFIG_OPT + +make clean + +make -j $(nproc) + +make install + +make installcheck diff --git a/scripts/ci/build_static_x86_64.sh b/scripts/ci/build_static_x86_64.sh deleted file mode 100755 index 24d8a2d6a..000000000 --- a/scripts/ci/build_static_x86_64.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -set -e - -CONFIG_OPT="--prefix=/opt/odp ${CONF}" - -cd "$(dirname "$0")"/../.. -./bootstrap -echo "./configure $CONFIG_OPT" -./configure $CONFIG_OPT - -make clean - -make -j $(nproc) - -make install - -make installcheck -- cgit v1.2.3