From 0d695701a2947936a81b00f8321521ccbc2aa380 Mon Sep 17 00:00:00 2001 From: Vassil Vassilev Date: Wed, 9 Aug 2023 09:35:59 +0000 Subject: [PATCH] [ci] Pass the cling build dir to address a recent change. --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a2a3bce5..81e9e9601 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -190,15 +190,15 @@ jobs: export CPPINTEROP_BUILD_DIR=$PWD cling_on="${{ matrix.cling }}" if [[ "${cling_on^^}" == "ON" ]]; then - cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ - -DUSE_CLING=ON \ - -DUSE_REPL=OFF \ + cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ + -DUSE_CLING=ON \ + -DUSE_REPL=OFF \ -DCling_DIR=$LLVM_BUILD_DIR/tools/cling \ - -DLLVM_DIR=$LLVM_BUILD_DIR \ - -DLLVM_USE_LINKER=lld \ - -DBUILD_SHARED_LIBS=ON \ - -DCODE_COVERAGE=${CODE_COVERAGE} \ - -DCMAKE_INSTALL_PREFIX=$CPPINTEROP_DIR \ + -DLLVM_DIR=$LLVM_BUILD_DIR \ + -DLLVM_USE_LINKER=lld \ + -DBUILD_SHARED_LIBS=ON \ + -DCODE_COVERAGE=${CODE_COVERAGE} \ + -DCMAKE_INSTALL_PREFIX=$CPPINTEROP_DIR \ ../ else cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} \