From 12be969ca2562649228caba9f043f087f56a1107 Mon Sep 17 00:00:00 2001 From: Ulrich Mohr Date: Thu, 29 Jul 2021 12:34:01 +0200 Subject: [PATCH] jenkins seems to overwrite out PATH --- automation/Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index 7b184280..43bf8728 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -32,6 +32,8 @@ pipeline { } steps { dir('build-q7s-debug') { + sh 'echo $PATH' + sh 'export PATH=$PATH:/usr/tools/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf/bin' sh 'cmake -DTGT_BSP="arm/q7s" -DCMAKE_BUILD_TYPE=Debug -DFSFW_OSAL=linux ..' sh 'cmake --build . -j' }