Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ variables:
${BLA_VENDOR}
${BLA_THREADS}
${TA_SCALAPACK}
TA_TRACKED_MADNESS_URL=/root/github/madness

before_script:
# NB: if CMAKE_BUILD_PARALLEL_LEVEL is not set (i.e. using shared runner), use 1 to ensure we have enough memory
Expand All @@ -33,6 +34,8 @@ before_script:
- ccache -p
# zero out the ccache statistics
- ccache -z
# update local copy of GH:madness
- git fetch /root/github/madness

ubuntu:
stage: build
Expand Down
4 changes: 2 additions & 2 deletions cmake/modules/FindOrFetchMADWorld.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ if (NOT TARGET MADworld)
include(FetchContent)
FetchContent_Declare(
MADNESS
GIT_REPOSITORY https://github.com/m-a-d-n-e-s-s/madness.git
GIT_REPOSITORY "${TA_TRACKED_MADNESS_URL}"
GIT_TAG ${TA_TRACKED_MADNESS_TAG}
GIT_PROGRESS TRUE
GIT_PROGRESS TRUE
)
FetchContent_MakeAvailable(MADNESS)
FetchContent_GetProperties(MADNESS
Expand Down
3 changes: 2 additions & 1 deletion external/versions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ set(TA_INSTALL_EIGEN_PREVIOUS_VERSION 3.3.7)
set(TA_INSTALL_EIGEN_URL_HASH SHA256=b4c198460eba6f28d34894e3a5710998818515104d6e74e5cc331ce31e46e626)
set(TA_INSTALL_EIGEN_PREVIOUS_URL_HASH MD5=b9e98a200d2455f06db9c661c5610496)

set(TA_TRACKED_MADNESS_TAG bd84a52766ab497dedc2f15f2162fb0eb7ec4653)
set(TA_TRACKED_MADNESS_URL https://github.com/m-a-d-n-e-s-s/madness.git CACHE STRING "GIT_REPOSITORY for cloning MADNESS source")
set(TA_TRACKED_MADNESS_TAG bd84a52766ab497dedc2f15f2162fb0eb7ec4653 CACHE STRING "GIT_TAG (branch or hash) for cloning MADNESS")
set(TA_TRACKED_MADNESS_PREVIOUS_TAG ef97ad1f0080da04f9592f03185c1a331cd5e001)
set(TA_TRACKED_MADNESS_VERSION 0.10.1)
set(TA_TRACKED_MADNESS_PREVIOUS_VERSION 0.10.1)
Expand Down
Loading