From 037f07d7445ecaf9693db6838b9c828b95cbea3e Mon Sep 17 00:00:00 2001 From: Paulo Matos Date: Thu, 7 Mar 2019 14:08:02 +0100 Subject: [PATCH] Use CI_PROJECT_DIR, not CI_PROJECT_PATH --- .gitlab-ci.yml | 2 +- .gitlab/build-test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fb910b73b0..1b0d0a27bf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -182,7 +182,7 @@ test:ubsan:cs: before_script: - apt-get update script: - - .gitlab/build-test.sh --jobs ${JOBS} --with-arch ${ARCH} --with-debian stretch --with-debian-mirror http://ftp.de.debian.org/debian/ --with-project-path ${CI_PROJECT_PATH} --with-chroot-path /tmp/racket-${ARCH}-${CI_COMMIT_SHORT_SHA}-chroot + - .gitlab/build-test.sh --jobs ${JOBS} --with-arch ${ARCH} --with-debian stretch --with-debian-mirror http://ftp.de.debian.org/debian/ --with-project-path ${CI_PROJECT_DIR} --with-chroot-path /tmp/racket-${ARCH}-${CI_COMMIT_SHORT_SHA}-chroot test:arm64: extends: .preparearch diff --git a/.gitlab/build-test.sh b/.gitlab/build-test.sh index b868516541..11ee4a972a 100755 --- a/.gitlab/build-test.sh +++ b/.gitlab/build-test.sh @@ -38,7 +38,7 @@ DEBIAN_MIRROR= JOBS= RACKET_CONFIGURE_ARGS= ARCH="$(uname -m)" -BUILD_DIR=${CI_PROJECT_PATH} +BUILD_DIR=${CI_PROJECT_DIR} MAKE_TARGET="in-place" CHROOT_DIR="/tmp/racket-chroot"