Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nightly test configurations #5243

Merged
merged 2 commits into from
Nov 27, 2024
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
35 changes: 15 additions & 20 deletions tests/test_automation/nightly_test_scripts/ornl_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,6 @@ packages:
- spec: openssl@1.1.1k
prefix: /usr
buildable: False
libffi:
externals:
- spec: libffi@3.4.2
prefix: /
buildable: False
EOF
;;
nitrogen )
Expand All @@ -110,11 +105,6 @@ packages:
- spec: openssl@1.1.1k
prefix: /usr
buildable: False
libffi:
externals:
- spec: libffi@3.4.2
prefix: /
buildable: False
EOF
;;
sulfur )
Expand All @@ -141,11 +131,6 @@ packages:
- spec: openssl@1.1.1k
prefix: /usr
buildable: False
libffi:
externals:
- spec: libffi@3.4.2
prefix: /
buildable: False
EOF
;;
*)
Expand Down Expand Up @@ -197,12 +182,22 @@ cd $HOME/apps/spack

# For reproducibility, use a specific version of Spack
# Prefer to use tagged releases https://github.com/spack/spack/releases
git checkout eb9ff5d7a7d47f112ece5a4c70ef603a047a2fbc
#commit eb9ff5d7a7d47f112ece5a4c70ef603a047a2fbc (HEAD -> develop, origin/develop, origin/HEAD)
#Author: Harmen Stoppels <me@harmenstoppels.nl>
#Date: Tue Nov 5 13:25:19 2024 +0100

git checkout 75b03bc12ffbabdfac0775ead5442c3f102f94c7
#commit 75b03bc12ffbabdfac0775ead5442c3f102f94c7 (HEAD -> develop, origin/develop, origin/HEAD)
#Author: Adam J. Stewart <ajstewart426@gmail.com>
#Date: Sun Nov 24 20:55:18 2024 +0100
#
# glib: add v2.82.2 (#47766)

#git checkout dfab174f3100840c889e8bb939260b64d93d8dbd
#commit dfab174f3100840c889e8bb939260b64d93d8dbd (HEAD -> develop, origin/develop, origin/HEAD)
#Author: Stephen Nicholas Swatman <stephen@v25.nl>
#Date: Mon Nov 18 14:04:52 2024 +0100
#
# paraview: add forward compat bound with cuda (#47430)
# benchmark: add version 1.9.0 (#47658)
#
# This commit adds Google Benchmark v1.9.0.

echo --- Git version and last log entry
git log -1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,16 @@ spack add py-numpy@${numpy_vnew}
spack add py-scipy
spack add py-h5py ^hdf5@${hdf5_vnew}%gcc@${gcc_vnew} +fortran +hl +mpi
spack add quantum-espresso@7.4 +mpi +qmcpack
export CMAKE_BUILD_PARALLEL_LEVEL=8 # For PySCF
spack add py-pyscf
#spack add rmgdft #Fails to compile with GCC14 due to bug in vendored SCALAPACK

#Luxury options for actual science use:
spack add py-requests # for pseudo helper
spack add py-ase # full Atomic Simulation Environment
#spack add graphviz +ghostscript +libgd +pangocairo +poppler # NEXUS requires optional PNG support
#spack add graphviz +libgd # NEXUS requires optional PNG support in dot
spack add libffi
spack add graphviz +pangocairo # NEXUS requires optional PNG support in dot
spack add py-pydot # NEXUS optional
spack add py-spglib # NEXUS optional
spack add py-seekpath # NEXUS optional
Expand Down Expand Up @@ -211,13 +214,16 @@ spack add py-numpy@${numpy_vold}
spack add py-scipy
spack add py-h5py ^hdf5@${hdf5_vnew}%gcc@${gcc_vold} +fortran +hl +mpi
#spack add quantum-espresso@7.4 +mpi +qmcpack
#export CMAKE_BUILD_PARALLEL_LEVEL=8 # For PySCF
#spack add py-pyscf
spack add rmgdft

#Luxury options for actual science use:
spack add py-requests # for pseudo helper
spack add py-ase # full Atomic Simulation Environment
#spack add graphviz +ghostscript +libgd +pangocairo +poppler # NEXUS requires optional PNG support
#spack add graphviz +libgd # NEXUS requires optional PNG support in dot
spack add libffi
spack add graphviz +pangocairo # NEXUS requires optional PNG support in dot
spack add py-pydot # NEXUS optional
spack add py-spglib # NEXUS optional
spack add py-seekpath # NEXUS optional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ gcc_vllvmoffload=${gcc_vold}

# LLVM
# Dates at https://releases.llvm.org/
llvm_vnew=19.1.3 # Released 2024-10-30
llvm_vnew=19.1.4 # Released 2024-11-19
llvm_voffload=${llvm_vnew}
cuda_voffload=12.4.0 # CUDA version for offload builds

Expand Down
Loading