CI: remove prebuilt toolchains

This commit is contained in:
2024-07-14 21:46:56 +02:00
parent c033d9fdcd
commit 913fd3330e
3 changed files with 93 additions and 19 deletions

View File

@@ -1,19 +1,13 @@
#!/bin/bash
if [ -z "$FICUS_ROOT" ]; then
echo "$FICUS_ROOT" is blank
echo "$FICUS_ROOT" is blank
fi
export PREFIX="$FICUS_ROOT/toolchain/gcc-x86_64-ficus-prefix/"
export TARGET=x86_64-ficus
export PATH="$PREFIX/bin:$PATH"
if [ -z "${BUILD_PARALLEL}" ]
then
if [ -z "${BUILD_PARALLEL}" ]; then
export BUILD_PARALLEL=$(nproc)
fi
if [ -z "${BUILD_PARALLEL}" ]
then
export BUILD_PARALLEL=$BUILD_PARALLEL
fi