From 7f0140d08c35159129d52e06f09225c0f854b59e Mon Sep 17 00:00:00 2001 From: Elen Kalda Date: Mon, 22 Aug 2022 10:41:15 +0100 Subject: [PATCH] [CI] Remove Vela from ci_cpu While the dependencies for microNPU and CMSIS-NN moved into ci_cortexm, Vela is still installed in ci_cpu. As a result, we have some of the microNPU tests outside of test_ethosu folder failing since they use precence of Vela to decide whether to skip the test. This change will * remove Vela from ci_cpu * remove unnecessary PATH update --- docker/Dockerfile.ci_cpu | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docker/Dockerfile.ci_cpu b/docker/Dockerfile.ci_cpu index 013ebfb59e88a..3812bfbd197ee 100644 --- a/docker/Dockerfile.ci_cpu +++ b/docker/Dockerfile.ci_cpu @@ -124,13 +124,6 @@ RUN bash /install/ubuntu_install_androidsdk.sh ENV ANDROID_HOME=/opt/android-sdk-linux/ ENV ANDROID_NDK_HOME=/opt/android-sdk-linux/ndk/21.3.6528147/ -# Install Vela compiler -COPY install/ubuntu_install_vela.sh /install/ubuntu_install_vela.sh -RUN bash /install/ubuntu_install_vela.sh - -# Update PATH -ENV PATH /opt/arm/gcc-arm-none-eabi/bin:/opt/arm/FVP_Corstone_SSE-300/models/Linux64_GCC-6.4:$PATH - # PaddlePaddle deps COPY install/ubuntu_install_paddle.sh /install/ubuntu_install_paddle.sh RUN bash /install/ubuntu_install_paddle.sh