Skip to content

Commit

Permalink
Merge pull request #118 from edoapra/master
Browse files Browse the repository at this point in the history
replace svn with git sparsecheckout
  • Loading branch information
nwchemgit authored Jan 20, 2024
2 parents 3e9e552 + e7bc4a9 commit 3dee4b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/cross_compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,11 @@ jobs:
cd /tmp
umask u=rwx,g=rwx,o=rwx
umask -S
svn export https://github.com/nwchemgit/nwchem/trunk/QA >& svnout.log
git clone --no-checkout https://github.com/nwchemgit/nwchem
cd nwchem
git sparse-checkout init --cone
git sparse-checkout set QA
git checkout
cd QA
docker run --shm-size 256m --rm --platform ${{matrix.archs }} \
--user 0 --privileged \
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/multiple_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,11 @@ jobs:
cd /tmp
umask u=rwx,g=rwx,o=rwx
umask -S
svn export https://github.com/nwchemgit/nwchem/trunk/QA >& svnout.log
git clone --no-checkout https://github.com/nwchemgit/nwchem
cd nwchem
git sparse-checkout init --cone
git sparse-checkout set QA
git checkout
cd QA
if [[ ${{ matrix.archs }} != 'linux/arm/v7' && ${{ matrix.fc }} != 'nvfortran' ]]; then \
docker run --shm-size 256m --rm --platform ${{matrix.archs }} \
Expand Down

0 comments on commit 3dee4b6

Please sign in to comment.