Fix the IP and EA preconditioners for mpirun and add abstract Precond… #12
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: format | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
clang-format: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
compiler: | |
- clang13 | |
cuda: | |
- false | |
env: | |
WITH_SHELL: nix-shell /home/runner/work/sisi4s/sisi4s/etc/env/nix/shell.nix --argstr compiler ${{matrix.compiler}} --arg cuda ${{matrix.cuda}} --run | |
NJ: 4 | |
steps: | |
- uses: actions/checkout@v2.3.4 | |
- name: pwd | |
run: | | |
pwd | |
- name: Install Nix | |
uses: cachix/install-nix-action@v15 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Format | |
run: | | |
${WITH_SHELL} './tools/ci-format.sh' | |
- name: Format | |
run: | | |
${WITH_SHELL} './tools/ci-format.sh' | |
- name: Files changed | |
run: | | |
files="$(git diff --name-only)" | |
if [[ -n "$files" ]]; then | |
echo files changed | |
echo $files | |
exit 1 | |
fi |