more carefully guard against trying to do anisotropic things when it … #19
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: mpi | |
on: | |
push: | |
branches: | |
- master | |
- spn | |
jobs: | |
build: | |
runs-on: self-hosted | |
strategy: | |
# Ensures that jobs are not cancelled is one job fails | |
fail-fast: false | |
matrix: | |
nc: [2, 3] | |
repr: [FUND, ADJ] | |
ecsw: [-expclover,-no-expclover] | |
dir: | |
- Algebra | |
- DiracOperator | |
- Geometry | |
- Inverters | |
- Integrators | |
- Mesons | |
- PureGauge | |
- RIMOM | |
- Sources | |
- StoredConfs | |
- Utils | |
- Disconnected | |
- GaugeFix | |
- Propagator | |
- Random | |
- Scattering | |
- SpinorField | |
- Update | |
- WilsonLoops | |
exclude: | |
- nc: 3 | |
repr: ADJ | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- uses: ./.github/actions/runtests | |
with: | |
dir: ${{matrix.dir}} | |
mpi: -mpi | |
nc: ${{ matrix.nc }} | |
repr: ${{ matrix.repr }} | |
ecsw: ${{ matrix.ecsw }} |