ci: Run non-cross-compile builds natively

This commit is contained in:
MarcoFalke
2019-11-04 13:57:02 -05:00
parent fa56bcbb01
commit fa8a60bce9
8 changed files with 10 additions and 12 deletions

View File

@@ -21,6 +21,9 @@ echo "Fallback to default values in env (if not yet set)"
export MAKEJOBS=${MAKEJOBS:--j4}
# A folder for the ci system to put temporary files (ccache, datadirs for tests, ...)
export BASE_SCRATCH_DIR=${BASE_SCRATCH_DIR:-$BASE_ROOT_DIR/ci/scratch/}
# What host to compile for. See also ./depends/README.md
# Tests that need cross-compilation export the appropriate HOST.
# Tests that run natively, do not set a HOST, but we assume x86_64 here if the calling environment did not set a HOST
export HOST=${HOST:-x86_64-unknown-linux-gnu}
# Whether to prefer BusyBox over GNU utilities
export USE_BUSY_BOX=${USE_BUSY_BOX:-false}