[WIP] Refactoring #159
Workflow file for this run
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
name: Linux CI - compiler tests | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- cpp-version: gcc-10 | |
package: "gcc-10 g++-10" | |
cc: "gcc-10" | |
cxx: "g++-10" | |
- cpp-version: gcc-11 | |
package: "gcc-11 g++-11" | |
cc: "gcc-11" | |
cxx: "g++-11" | |
- cpp-version: gcc-12 | |
package: "gcc-12 g++-12" | |
cc: "gcc-12" | |
cxx: "g++-12" | |
- cpp-version: clang-11 | |
package: "clang-11" | |
cc: "clang-11" | |
cxx: "clang++-11" | |
- cpp-version: clang-12 | |
package: "clang-12" | |
cc: "clang-12" | |
cxx: "clang++-12" | |
- cpp-version: clang-13 | |
package: "clang-13" | |
cc: "clang-13" | |
cxx: "clang++-13" | |
- cpp-version: clang-14 | |
package: "clang-14" | |
cc: "clang-14" | |
cxx: "clang++-14" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install compiler | |
run: | | |
sudo apt update | |
sudo apt install ${{ matrix.package }} | |
- name: install mamba | |
uses: mamba-org/provision-with-micromamba@main | |
with: | |
environment-file: environment/conda-environment-test.yml | |
environment-name: ponio-test | |
- name: Conda informations | |
shell: bash -l {0} | |
run: | | |
conda info | |
conda list | |
- name: Configure | |
shell: bash -l {0} | |
run: | | |
CC=${{ matrix.cc }} CXX=${{ matrix.cxx }} cmake . -B ./build -G "Ninja Multi-Config" -DBUILD_TESTS=ON | |
- name: Build | |
shell: bash -l {0} | |
run: | | |
cmake --build ./build --config Release | |
- name: Test | |
shell: bash -l {0} | |
run: | | |
./build/solver/test/Release/ponio_tests | |
- name: NotebookTest | |
shell: bash -l {0} | |
# should fix lotka_volterra_tuto.ipynb and three_body_choregraphy.ipynb to run this command on all solver/notebooks folder | |
run: | | |
cd solver/notebooks; CXX=${{ matrix.cxx }} pytest --nbval --current-env -p no:warnings |