Skip to content

Commit 00f8ea2

Browse files
authoredAug 16, 2024
Merge pull request NOAA-EMC#136 from jiandewang/feature/update-to-main-20240531
update to main 20240729 commit (gfdl-to-main-2024-05-31)
2 parents 4b8777e + 5c9aee9 commit 00f8ea2

File tree

155 files changed

+13675
-8873
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+13675
-8873
lines changed
 

‎.github/actions/testing-setup/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
run: |
2929
echo "::group::Compile FMS library"
3030
cd .testing
31-
REPORT_ERROR_LOGS=true make deps/lib/libFMS.a -s -j
31+
REPORT_ERROR_LOGS=true make build/deps/lib/libFMS.a -s -j
3232
echo "::endgroup::"
3333
3434
- name: Compile MOM6 in symmetric memory mode

‎.github/workflows/coverage.yml

+2-16
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,7 @@ jobs:
3131
- name: Run (single processor) unit tests
3232
run: make run.unit
3333

34-
- name: Report unit test coverage to CI (PR)
35-
if: github.event_name == 'pull_request'
36-
run: make report.cov.unit REQUIRE_COVERAGE_UPLOAD=true
37-
env:
38-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
39-
40-
- name: Report unit test coverage to CI (Push)
41-
if: github.event_name != 'pull_request'
34+
- name: Report unit test coverage to CI
4235
run: make report.cov.unit
4336
env:
4437
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
@@ -49,14 +42,7 @@ jobs:
4942
- name: Run coverage tests
5043
run: make -j -k run.cov
5144

52-
- name: Report coverage to CI (PR)
53-
if: github.event_name == 'pull_request'
54-
run: make report.cov REQUIRE_COVERAGE_UPLOAD=true
55-
env:
56-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
57-
58-
- name: Report coverage to CI (Push)
59-
if: github.event_name != 'pull_request'
45+
- name: Report coverage to CI
6046
run: make report.cov
6147
env:
6248
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)