Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/file-filter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ yml: &yml
- '.github/workflows/bench.yml'
- '.github/workflows/test.yml'
- '.github/workflows/formatting.yml'
- '.github/workflows/fp-stability.yml'
- '.github/workflows/convergence.yml'

checkall: &checkall
- *fortran_src
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/convergence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,36 @@ on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
workflow_dispatch:

env:
OMPI_MCA_rmaps_base_oversubscribe: 1

jobs:
file-changes:
name: Detect File Changes
runs-on: ubuntu-latest
outputs:
checkall: ${{ steps.changes.outputs.checkall }}
steps:
- name: Clone
uses: actions/checkout@v4

- name: Detect Changes
uses: dorny/paths-filter@v3
id: changes
with:
filters: ".github/file-filter.yml"

convergence:
name: "Convergence"
runs-on: ubuntu-latest
needs: [file-changes]
if: >-
!cancelled() &&
needs.file-changes.result == 'success' &&
(needs.file-changes.outputs.checkall == 'true' || github.event_name == 'workflow_dispatch')
timeout-minutes: 240

steps:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/fp-stability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,29 @@ on:
workflow_dispatch:

jobs:
file-changes:
name: Detect File Changes
runs-on: ubuntu-latest
outputs:
checkall: ${{ steps.changes.outputs.checkall }}
steps:
- name: Clone
uses: actions/checkout@v4

- name: Detect Changes
uses: dorny/paths-filter@v3
id: changes
with:
filters: ".github/file-filter.yml"

fp-stability:
name: Floating-Point Stability (Verrou)
runs-on: ubuntu-latest
needs: [file-changes]
if: >-
!cancelled() &&
needs.file-changes.result == 'success' &&
(needs.file-changes.outputs.checkall == 'true' || github.event_name == 'workflow_dispatch')

steps:
- name: Clone
Expand Down
Loading