diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2025-04-07 14:07:47 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2025-04-08 23:34:17 -0400 |
commit | 5493bdfb483f59935381703b1e1cedb466e8586d (patch) | |
tree | 358426220617585aef0e9b0babd35ca4ea82bc82 /scripts/ci-build.sh | |
parent | 4b9cb36247c2edc9fcbc488eb497aa90f794a445 (diff) | |
download | kutter-5493bdfb483f59935381703b1e1cedb466e8586d.tar.gz kutter-5493bdfb483f59935381703b1e1cedb466e8586d.tar.xz kutter-5493bdfb483f59935381703b1e1cedb466e8586d.zip |
ci-install: Use prebuilt pru gcc binaries
Don't build the pru binaries directly in the build test cases, instead
use the upstream binaries provided.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/ci-build.sh')
-rwxr-xr-x | scripts/ci-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci-build.sh b/scripts/ci-build.sh index e3f0e872..ec37cbe0 100755 --- a/scripts/ci-build.sh +++ b/scripts/ci-build.sh @@ -7,7 +7,7 @@ set -eu # Paths to tools installed by ci-install.sh MAIN_DIR=${PWD} BUILD_DIR=${PWD}/ci_build -export PATH=${BUILD_DIR}/pru-gcc/bin:${PATH} +export PATH=${BUILD_DIR}/pru-elf/bin:${PATH} export PATH=${BUILD_DIR}/or1k-linux-musl-cross/bin:${PATH} PYTHON=${BUILD_DIR}/python-env/bin/python PYTHON2=${BUILD_DIR}/python2-env/bin/python |