We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 180e190 commit 2cbe682Copy full SHA for 2cbe682
.ci/docker/common/install_zephyr.sh
@@ -8,6 +8,9 @@
8
9
set -ex
10
11
+# shellcheck source=/dev/null
12
+source "$(dirname "${BASH_SOURCE[0]}")/utils.sh"
13
+
14
# Double check if the NDK version is set
15
[ -n "${ZEPHYR_SDK}" ]
16
.ci/docker/ubuntu/Dockerfile
@@ -86,8 +86,9 @@ ARG ARM_SDK
86
87
ARG ZEPHYR_SDK
88
COPY ./common/install_zephyr.sh install_zephyr.sh
89
+COPY ./common/utils.sh utils.sh
90
RUN if [ -n "${ZEPHYR_SDK}" ]; then bash ./install_zephyr.sh; fi
-RUN rm install_zephyr.sh
91
+RUN rm install_zephyr.sh utils.sh
92
93
ARG QNN_SDK
94
0 commit comments