File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -53,16 +53,18 @@ jobs:
5353 CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]")
5454 conda activate "${CONDA_ENV}"
5555
56+ ./install_requirements.sh > /dev/null
57+
5658 # Download toolchain and add to path
5759 toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/toolchain_linux-x86_64_arm-zephyr-eabi.tar.xz"
5860 toolchain_dir="arm-zephyr-eabi"
5961 curl --output "${toolchain_dir}.tar.xz" -L "${toolchain_url}"
6062 tar xf "${toolchain_dir}.tar.xz"
6163 rm -f "${toolchain_dir}.tar.xz"
6264 toolchain_bin_path="$(cd ${toolchain_dir}/bin && pwd)"
63- export PATH="\${ PATH}:${toolchain_bin_path}"
64-
65- ./install_requirements.sh > /dev/null
65+ echo $ PATH
66+ export PATH=$PATH:${toolchain_bin_path}
67+ echo $PATH
6668
6769 # Build Arm Zephyr Preset
6870 cmake --preset ${{ matrix.preset }}
You can’t perform that action at this time.
0 commit comments