Skip to content

Commit

Permalink
try 3
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed Jan 10, 2024
1 parent 778dfb3 commit c88afbf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
run: cmake --build build

- name: Test Libint library - unit tests
if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
if: false
shell: bash
working-directory: ${{github.workspace}}/build/compiler
run: CTEST_PARALLEL_LEVEL=2 cmake --build build --target check-libint2
Expand All @@ -164,7 +164,7 @@ jobs:
if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
shell: bash
working-directory: ${{github.workspace}}/build/compiler
run: cmake --build build --target check-python
run: cmake --build build --target libint2-python-test

#rm -rf buildcm/ && cmake -S. -Bbuildcm -GNinja -DEXPORT_COMPRESSOR=bzip2 -DWITH_MAX_AM="2;2" -DWITH_ERI_MAX_AM="2;2" -DWITH_ERI3_MAX_AM="3;2" -DENABLE_ERI=1 -DENABLE_ERI3=1 -DMULTIPOLE_MAX_ORDER=2 -DBUILD_SHARED_LIBS=ON && time cmake --build buildcm --target check-libint2

Expand Down
11 changes: 7 additions & 4 deletions src/lib/libint/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,13 @@ else()
if (LIBINT2_LOCAL_Eigen3_INSTALL)
list(APPEND library_CMAKE_ARGS "-DLIBINT2_LOCAL_Eigen3_INSTALL=${LIBINT2_LOCAL_Eigen3_INSTALL}")
endif()




if (Python_EXECUTABLE)
list(APPEND library_CMAKE_ARGS "-DPython_EXECUTABLE=${Python_EXECUTABLE}")
endif()
if (LIBINT2_ENABLE_FORTRAN AND CMAKE_Fortran_COMPILER)
# Note: not handling CMAKE_Fortran_COMPILER_ARG1
list(APPEND library_CMAKE_ARGS "-DCMAKE_Fortran_COMPILER=${CMAKE_Fortran_COMPILER}")
endif()

ExternalProject_Add(
library
Expand Down

0 comments on commit c88afbf

Please sign in to comment.