aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaojian Zhuang <haojian.zhuang@linaro.org>2021-10-14 07:31:41 +0800
committerFathi Boudra <fathi.boudra@linaro.org>2021-10-14 09:06:33 +0000
commit7ac6ec624b15530a2993da25525579e7f1b0cbd0 (patch)
tree943d4429e4ec0f6da737dde633d1552e6de2c9a8
parentd523606943387fc95ff608f7d23a65cc1c6cc584 (diff)
uadk: fix on script
* Fix the path of test script of openssl-uadk repo. * Make the builders scripts be shared between both uadk and openssl-uadk. Since these two repos are related. One careless change in uadk repo may break openssl-uadk repo. Signed-off-by: Haojian Zhuang <haojian.zhuang@linaro.org> Change-Id: I76cd78962abae83020059e230b25e406eca24ee3
-rw-r--r--uadk-openssl.yaml2
-rwxr-xr-xuadk/builders.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/uadk-openssl.yaml b/uadk-openssl.yaml
index e7795adfac..cbd20a7a61 100644
--- a/uadk-openssl.yaml
+++ b/uadk-openssl.yaml
@@ -44,7 +44,7 @@
- timestamps
builders:
- shell:
- !include-raw: uadk/builders-openssl.sh
+ !include-raw: uadk/builders.sh
- build-name-setter:
name: 'version.txt'
file: true
diff --git a/uadk/builders.sh b/uadk/builders.sh
index 60fe4fef76..482220d840 100755
--- a/uadk/builders.sh
+++ b/uadk/builders.sh
@@ -270,7 +270,7 @@ build_uadk_openssl() {
LD_LIBRARY_PATH=${LIB_ROOT}/${LIB_DIR}:${LIB_ROOT}/${LIB_DIR}/engines-1.1 \
PATH=${LIB_ROOT}/${BIN_DIR}/:${PATH} \
C_INCLUDE_PATH=${LIB_ROOT}/${INC_DIR}/ \
- sanity_test.sh || exit_code=$?
+ test/sanity_test.sh || exit_code=$?
if [ "$exit_code" != 0 ]; then
echo "Fail to verify openssl-uadk sanity test ($exit_code)"
return $exit_code