mirror of https://github.com/QMCPACK/qmcpack.git
40 lines
973 B
YAML
40 lines
973 B
YAML
name: static
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
branches:
|
|
- develop
|
|
- main
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
container: ${{ matrix.container }}
|
|
env:
|
|
GH_JOBNAME: ${{ matrix.jobname }}
|
|
GH_OS: Linux
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
jobname: [ClangTidy14-NoMPI-Real, ClangTidy14-NoMPI-Complex]
|
|
include:
|
|
- jobname: ClangTidy14-NoMPI-Real
|
|
container:
|
|
image: ghcr.io/qmcpack/ubuntu22-openmpi:latest
|
|
options: -u 1001
|
|
|
|
- jobname: ClangTidy14-NoMPI-Complex
|
|
container:
|
|
image: ghcr.io/qmcpack/ubuntu22-openmpi:latest
|
|
options: -u 1001
|
|
|
|
steps:
|
|
- name: Checkout Action
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Configure
|
|
run: tests/test_automation/github-actions/ci/run_step_static.sh configure
|
|
|
|
- name: Build
|
|
run: tests/test_automation/github-actions/ci/run_step_static.sh build
|