-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use submodules instead of clones in linux workflow (#321)
- Loading branch information
Showing
2 changed files
with
6 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "Getting PeleLMeX dependencies - tests ... " | ||
export PELELM_HOME=${PWD}/.. | ||
mkdir build | ||
git clone https://github.com/AMReX-Codes/amrex.git build/amrex | ||
export AMREX_HOME=${PWD}/build/amrex | ||
git clone -b development https://github.com/AMReX-Combustion/PelePhysics.git build/PelePhysics | ||
export PELE_PHYSICS_HOME=${PWD}/build/PelePhysics | ||
git clone https://github.com/AMReX-Codes/AMReX-Hydro.git build/AMReX-Hydro | ||
export AMREX_HYDRO_HOME=${PWD}/build/AMReX-Hydro | ||
git clone https://github.com/AMReX-Combustion/PeleMP.git build/PeleMP | ||
export PELEMP_HOME=${PWD}/build/PeleMP | ||
git clone https://github.com/LLNL/sundials.git build/sundials | ||
export SUNDIALS_HOME=${PWD}/build/sundials | ||
git submodule init | ||
git submodule update |