Skip to content

Commit c103c74

Browse files
author
David Williams-Young
authored
Reenable LLVM in CI pipleline (#22)
* Pin BLAS++/LAPACK++ w/ OpenMP fixes * [CI] Reenable LLVM in GH Actions pipeline
1 parent 0988eca commit c103c74

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build_and_test_compiler_zoo.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
image: dbwy/chemistry
1515
strategy:
1616
matrix:
17-
compiler: [ {suite: gnu, version: 12} ]
17+
compiler: [ {suite: gnu, version: 12}, {suite: llvm, version: 14} ]
1818
openmp_flag: [ON, OFF]
1919
mpi_flag: [ON, OFF]
2020
exclude:

src/lobpcgxx/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ if(NOT lapackpp_FOUND )
2121
include( FetchContent )
2222
FetchContent_Declare( blaspp
2323
GIT_REPOSITORY https://github.com/icl-utk-edu/blaspp.git
24-
GIT_TAG 01b5678bb764755254e907e6c56d4054b0ebabc1
24+
GIT_TAG 13622021629f5fd27591bb7da60bae5b19561f01
2525
)
2626
FetchContent_Declare( lapackpp
2727
GIT_REPOSITORY https://github.com/icl-utk-edu/lapackpp.git
28+
GIT_TAG 5bc9c85201ace48213df5ac7d1ef026c9668dfbd
2829
)
2930

3031
FetchContent_MakeAvailable( blaspp )

0 commit comments

Comments
 (0)