Skip to content

add separate nightly deal.II master Docker script with clang #1

add separate nightly deal.II master Docker script with clang

add separate nightly deal.II master Docker script with clang #1

Workflow file for this run

name: tidy
on:
push:
branches:
- 'main'
- 'aspect-*'
pull_request:
concurrency:
group: ${{ github.actor }}-${{ github.ref }}
cancel-in-progress: true
env:
OMPI_MCA_btl_base_warn_component_unused: 0
OMPI_MCA_mpi_yield_when_idle: 1
OMPI_MCA_rmaps_base_oversubscribe: 1
OMPI_ALLOW_RUN_AS_ROOT: 1
OMPI_ALLOW_RUN_AS_ROOT_CONFIRM: 1
OMPI_MCA_btl_vader_single_copy_mechanism: none
jobs:
tidy:
#run clang-tidy
name: tidy
runs-on: [ubuntu-latest]
strategy:
fail-fast: false
matrix:
include:
- image: "geodynamics/aspect-tester:noble-dealii-master-clang"
result-file: "clang-tidy-results.txt"
container-options: '--user 0 --name container'
container:
image: ${{ matrix.image }}
options: ${{ matrix.container-options }}
steps:
- uses: actions/checkout@v4
- name: compile
run: |

Check failure on line 42 in .github/workflows/clang-tidy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/clang-tidy.yml

Invalid workflow file

You have an error in your yaml syntax on line 42
mkdir build
cd build
../contrib/utilities/run_clang_tidy.sh
mv output.txt ${{ matrix.result-file }}
- name: archive test results
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.result-file }}
path: build/${{ matrix.result-file }}