From ac75c5b7f6681397a9b9cc0ac38a87979eb6731c Mon Sep 17 00:00:00 2001 From: Jake Hughes Date: Fri, 19 Jan 2024 11:18:28 +0000 Subject: [PATCH] Use absolute path in build script --- .buildbot.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.buildbot.sh b/.buildbot.sh index 0afc19804..72085d768 100644 --- a/.buildbot.sh +++ b/.buildbot.sh @@ -20,8 +20,9 @@ sh rustup.sh --default-host x86_64-unknown-linux-gnu \ --profile minimal \ -y export PATH=`pwd`/.cargo/bin/:$PATH +BDWGC_SRC=`pwd` git clone https://github.com/softdevteam/alloy cd alloy -BDWGC=../ ENABLE_GC_ASSERTIONS=true /usr/bin/time -v python3 x.py test --stage 2 \ +BDWGC=${BOEHM_SRC} ENABLE_GC_ASSERTIONS=true /usr/bin/time -v python3 x.py test --stage 2 \ --config .buildbot.config.toml --exclude rustdoc-json --exclude debuginfo