Skip to content

Commit

Permalink
Fix LLVM_DIR and Clang_DIR Clad build Unix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Mar 10, 2024
1 parent 188308e commit bb2664e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -788,10 +788,10 @@ jobs:
if: ${{ runner.os != 'windows' }}
run: |
mkdir obj && cd obj
cmake -DClang_DIR="$PATH_TO_LLVM_BUILD" \
-DLLVM_DIR="$PATH_TO_LLVM_BUILD" \
cmake -DClang_DIR=${{ env.PATH_TO_LLVM_BUILD }} \
-DLLVM_DIR=${{ env.PATH_TO_LLVM_BUILD }} \
-DCMAKE_BUILD_TYPE=$([[ -z "$BUILD_TYPE" ]] && echo RelWithDebInfo || echo $BUILD_TYPE) \
-DCLAD_CODE_COVERAGE=${CLAD_CODE_COVERAGE} \
-DCLAD_CODE_COVERAGE=${{ env.CLAD_CODE_COVERAGE }} \
-DLLVM_EXTERNAL_LIT="`which lit`" \
-DLLVM_ENABLE_WERROR=On \
$GITHUB_WORKSPACE \
Expand Down

0 comments on commit bb2664e

Please sign in to comment.