From 1c75d3242f6abd6b80d823f55ebe40728481d95c Mon Sep 17 00:00:00 2001 From: mcbarton <150042563+mcbarton@users.noreply.github.com> Date: Fri, 9 Feb 2024 15:18:37 +0000 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11d63fee..548b5673 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -239,11 +239,11 @@ jobs: cd ../ else mkdir inst - ls # Apply patches git apply -v ../patches/llvm/clang${{ matrix.clang-runtime }}-*.patch echo "Apply clang${{ matrix.clang-runtime }}-*.patch patches:" cd build + cmake -DLLVM_ENABLE_PROJECTS="clang;openmp" \ -DLLVM_TARGETS_TO_BUILD="host;NVPTX" \ -DCMAKE_BUILD_TYPE=Release \ @@ -256,6 +256,7 @@ jobs: -DLLVM_USE_LINKER=lld \ -DLLVM_BUILD_TESTS=OFF \ ../llvm + cmake --build . --target all --parallel ${{ env.ncpus }} cmake --build . --target install --parallel ${{ env.ncpus }} cd ..