From 0374aacac0a9f9f4a0255ffcf8bcd1439103bc24 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michel=20D=C3=A4nzer?= Date: Thu, 12 Sep 2019 11:34:43 +0200 Subject: [PATCH] gitlab-ci: Move scons build/test commands to a separate shell script Preparatory, no functional change intended. Reviewed-by: Eric Engestrom --- .gitlab-ci.yml | 6 +----- .gitlab-ci/scons-build.sh | 12 ++++++++++++ 2 files changed, 13 insertions(+), 5 deletions(-) create mode 100755 .gitlab-ci/scons-build.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bada20d..170b2cb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -129,11 +129,7 @@ test-container:arm64: variables: SCONSFLAGS: "-j4" script: - - if test -n "$LLVM_VERSION"; then - export LLVM_CONFIG="llvm-config-${LLVM_VERSION}"; - fi - - scons $SCONS_TARGET - - eval $SCONS_CHECK_COMMAND + - .gitlab-ci/scons-build.sh meson-main: extends: diff --git a/.gitlab-ci/scons-build.sh b/.gitlab-ci/scons-build.sh new file mode 100755 index 0000000..30e93c2 --- /dev/null +++ b/.gitlab-ci/scons-build.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +set -e +set -o xtrace + +if test -n "$LLVM_VERSION"; then + export LLVM_CONFIG="llvm-config-${LLVM_VERSION}" +fi + +rm -rf build +scons $SCONS_TARGET +eval $SCONS_CHECK_COMMAND -- 2.7.4