Skip to content

Commit ae9f33b

Browse files
committed
[ci] Prefix cmake options for CppInterOp
Based on the change in CppInterOp: compiler-research/CppInterOp#505 that prefixes the build option with `CPPINTEROP`
1 parent 69a3cf6 commit ae9f33b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/MacOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,8 +477,8 @@ jobs:
477477
cling_on=$(echo "${{ matrix.cling }}" | tr '[:lower:]' '[:upper:]')
478478
if [[ "${cling_on}" == "ON" ]]; then
479479
cmake -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
480-
-DUSE_CLING=ON \
481-
-DUSE_REPL=OFF \
480+
-DCPPINTEROP_USE_CLING=ON \
481+
-DCPPINTEROP_USE_REPL=OFF \
482482
-DCPPINTEROP_INCLUDE_DOCS=${{ matrix.documentation }} \
483483
-DCling_DIR=$LLVM_BUILD_DIR/tools/cling \
484484
-DLLVM_DIR=$LLVM_BUILD_DIR/lib/cmake/llvm \

.github/workflows/Ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,8 +548,8 @@ jobs:
548548
cling_on=$(echo "${{ matrix.cling }}" | tr '[:lower:]' '[:upper:]')
549549
if [[ "${cling_on}" == "ON" ]]; then
550550
cmake -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
551-
-DUSE_CLING=ON \
552-
-DUSE_REPL=OFF \
551+
-DCPPINTEROP_USE_CLING=ON \
552+
-DCPPINTEROP_USE_REPL=OFF \
553553
-DCPPINTEROP_INCLUDE_DOCS=${{ matrix.documentation }} \
554554
-DCling_DIR=$LLVM_BUILD_DIR/tools/cling \
555555
-DLLVM_DIR=$LLVM_BUILD_DIR/lib/cmake/llvm \

.github/workflows/Windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,8 @@ jobs:
377377
if ( "${{ matrix.cling }}" -imatch "On" )
378378
{
379379
cmake -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} `
380-
-DUSE_CLING=ON `
381-
-DUSE_REPL=OFF `
380+
-DCPPINTEROP_USE_CLING=ON `
381+
-DCPPINTEROP_USE_REPL=OFF `
382382
-DCling_DIR="$env:LLVM_BUILD_DIR\tools\cling" `
383383
-DLLVM_DIR="$env:LLVM_BUILD_DIR" `
384384
-DLLVM_ENABLE_WERROR=On `

.github/workflows/emscripten.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,8 +598,8 @@ jobs:
598598
export CPPINTEROP_BUILD_DIR=$PWD
599599
if [[ "${cling_on}" == "ON" ]]; then
600600
emcmake cmake -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
601-
-DUSE_CLING=ON \
602-
-DUSE_REPL=OFF \
601+
-DCPPINTEROP_USE_CLING=ON \
602+
-DCPPINTEROP_USE_REPL=OFF \
603603
-DCMAKE_PREFIX_PATH=$PREFIX \
604604
-DCling_DIR=$LLVM_BUILD_DIR/tools/cling \
605605
-DLLVM_DIR=$LLVM_BUILD_DIR/lib/cmake/llvm \

0 commit comments

Comments
 (0)