Skip to content

Commit

Permalink
Fix ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-penev committed Nov 28, 2023
1 parent 8af93d0 commit afc6748
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ jobs:

- name: ubu22-clang15-runtime16-debug
os: ubuntu-22.04
compiler: clang-16
compiler: clang-15
clang-runtime: '16'
debug_build: true

Expand Down Expand Up @@ -575,16 +575,23 @@ jobs:
# Build
mkdir build
cd build
cmake -DLLVM_ENABLE_PROJECTS=clang \
export CPU_COUNT="$(nproc --all)"
cmake \
-DLLVM_ENABLE_PROJECTS="clang" \
-DLLVM_TARGETS_TO_BUILD="host;NVPTX" \
-DCMAKE_BUILD_TYPE=`[[ -z "$BUILD_TYPE" ]] && echo RelWithDebInfo || echo $BUILD_TYPE` \
-DLLVM_ENABLE_ASSERTIONS=ON \
-DCLANG_ENABLE_STATIC_ANALYZER=OFF \
-DCLANG_ENABLE_ARCMT=OFF \
-DCLANG_ENABLE_FORMAT=OFF \
-DCLANG_ENABLE_BOOTSTRAP=OFF \
-DLLVM_ENABLE_TERMINFO=OFF \
-DCLANG_INCLUDE_TESTS=OFF \
-DCLANG_INCLUDE_DOCS=OFF \
-DLLVM_INCLUDE_TESTS=OFF \
-DLLVM_INCLUDE_DOCS=OFF \
../llvm
cmake --build . --target clang clang-repl --parallel ${{ env.ncpus }}
cmake --build . --target clang --parallel ${CPU_COUNT}
cd ../../
- name: Save Cache LLVM/Clang runtime build directory (debug_build==true)
uses: actions/cache/save@v3
Expand Down

0 comments on commit afc6748

Please sign in to comment.