Skip to content

Commit 466db61

Browse files
committed
Merge branch 'main' into main-PR1187
2 parents 903602f + af09b9d commit 466db61

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/bld_scm_images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
push:
66
branches:
77
# Only build containers when pushing to main
8-
- "main"
8+
- main
99

1010
jobs:
1111
docker:

.github/workflows/run_scm_rts.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@ name: Build/run the CCPP-SCM, compare to existing baselines (GitHub artifact)
22

33
on:
44
push:
5+
branches:
6+
# Only build and run when pushing to main
7+
- main
58
pull_request:
69
workflow_dispatch:
710

811
jobs:
912
run_scm_rts:
1013
runs-on: ubuntu-24.04
14+
if: github.repository == 'NCAR/ccpp-scm'
1115
strategy:
1216
fail-fast: false
1317
matrix:
@@ -176,4 +180,4 @@ jobs:
176180
uses: actions/upload-artifact@v7
177181
with:
178182
name: rt-baselines-${{matrix.build-type}}-${{matrix.fortran-compiler}}-${{matrix.run_lists}}-${{ env.artifact_origin }}
179-
path: /__w/ccpp-scm/ccpp-scm/test/artifact-${{matrix.build-type}}-${{matrix.fortran-compiler}}-${{matrix.run_lists}}
183+
path: /__w/ccpp-scm/ccpp-scm/test/artifact-${{matrix.build-type}}-${{matrix.fortran-compiler}}-${{matrix.run_lists}}

scm/src/suite_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def main():
9898
import rt_test_cases
9999

100100
# choose correct compiler
101-
if 'gfortran' in args.fc.lower():
101+
if 'gnu' in args.fc.lower():
102102
rttc = rt_test_cases.gnu_test_cases
103103
elif 'intel' in args.fc.lower():
104104
rttc = rt_test_cases.intel_test_cases

0 commit comments

Comments
 (0)