mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-21 06:25:21 -04:00
18 lines
1.1 KiB
Bash
Executable file
18 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
set -v
|
|
ls -Rla ~/cache
|
|
[ -d ~/cache/libext ] && rsync -av ~/cache/libext/* src/libext/.
|
|
[ -d ~/cache/simint/simint_install/lib ] && \
|
|
mkdir -p src/NWints/simint/libsimint_source/simint_install && \
|
|
rsync -av ~/cache/simint/simint_install/* src/NWints/simint/libsimint_source/simint_install/. || true
|
|
[ -f ~/cache/tarballs/dftd3.tgz ] && rsync -av ~/cache/tarballs/dftd3.tgz src/nwpw/nwpwlib/nwpwxc/dftd3.tgz || true
|
|
[ -f ~/cache/libxc/install/lib/libxc.a ] && rsync -av ~/cache/libxc/install src/libext/libxc/. || true
|
|
echo "cache fetched"
|
|
echo " mpich debug "
|
|
ls -lart /home/runner/work/nwchem/nwchem/src/libext/mpich/mpich/../../include || true
|
|
ls -lart /home/runner/work/nwchem/nwchem/src/libext/include || true
|
|
ls -lart /home/runner/work/nwchem/nwchem/src/libext/mpich || true
|
|
rsync -av ~/cache/dftd3.tgz src/nwpw/nwpwlib/nwpwxc/. || true
|
|
rsync -av ~/cache/OpenBLAS*gz src/libext/openblas/. || true
|
|
rsync -av ~/cache/scalapack*tar*gz src/libext/scalapack/. || true
|
|
rsync -av ~/cache/elpa*tar*gz src/libext/elpa/. || true
|