-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61029eb
commit 5fde3b1
Showing
1 changed file
with
82 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: Run tests | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Mambaforge | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
use-mamba: true | ||
miniforge-variant: Mambaforge | ||
miniforge-version: latest | ||
activate-environment: anaconda-client-env | ||
|
||
- name: Install conda packages | ||
shell: bash -l {0} | ||
run: | | ||
mamba install --file requirements.txt | ||
- name: Install Eigen | ||
shell: bash -l {0} | ||
run: | | ||
git clone --branch 3.4.0 https://gitlab.com/libeigen/eigen.git | ||
cd eigen | ||
mkdir build | ||
cd build | ||
cmake -DBUILD_TESTING=OFF -DINCLUDE_INSTALL_DIR=$CONDA_PREFIX/include -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX .. | ||
make install | ||
cd ../.. | ||
- name: Install Autodiff | ||
shell: bash -l {0} | ||
run: | | ||
git clone --branch v1.1.0 https://github.com/autodiff/autodiff.git | ||
cd autodiff | ||
mkdir build | ||
cd build | ||
cmake -DAUTODIFF_BUILD_TESTS=OFF \ | ||
-DAUTODIFF_BUILD_PYTHON=OFF \ | ||
-DAUTODIFF_BUILD_EXAMPLES=OFF \ | ||
-DAUTODIFF_BUILD_DOCS=OFF \ | ||
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \ | ||
.. | ||
make install | ||
cd ../.. | ||
- name: Install Fastor | ||
shell: bash -l {0} | ||
run: | | ||
git clone https://github.com/romeric/Fastor.git | ||
cd Fastor | ||
cmake -DBUILD_TESTING=OFF -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX . | ||
make install | ||
cd .. | ||
- name: Install Marmot | ||
shell: bash -l {0} | ||
run: | | ||
git clone --recurse-submodules https://github.com/MAteRialMOdelingToolbox/Marmot/ | ||
cd Marmot | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX .. | ||
make install | ||
cd ../.. | ||
- name: Build EdelweissFE | ||
shell: bash -l {0} | ||
run: | | ||
git clone https://github.com/EdelweissFE/EdelweissFE.git | ||
pip install . | ||
cd .. | ||
- name: Run tests | ||
shell: bash -l {0} | ||
run: | | ||
python run_tests_edelweiss.py |