-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/8.4.0' into main
- Loading branch information
Showing
352 changed files
with
31,229 additions
and
19,841 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
src/doc export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
|
||
*.C linguist-language=C++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
name: Framework Issue | ||
about: Issues for tracking specific changes to the ESMF codebase. These are typically created by ESMF Core Team members. | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: ESMF Support | ||
url: http://earthsystemmodeling.org/support/ | ||
about: To get help with using ESMF, please send an email to [email protected]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Generate API changes | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag1: | ||
description: 'First ESMF Tag' | ||
required: true | ||
default: 'v8.3.0' | ||
tag2: | ||
description: 'Second ESMF Tag' | ||
required: true | ||
default: 'develop' | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Checkout Dockerfiles | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: esmf-org/esmf-containers | ||
path: esmf-containers | ||
ref: main | ||
|
||
- name: Build Docker image | ||
run: | | ||
cd ${{ github.workspace }}/esmf-containers/api-change | ||
docker build . --tag esmf/api-change --build-arg TAG1="${{ inputs.tag1 }}" --build-arg TAG2="${{ inputs.tag2 }}" | ||
- name: Copy artifacts | ||
run: | | ||
mkdir -p ${{ github.workspace }}/artifacts | ||
CID=$(docker run -dit --name runner esmf/api-change) | ||
docker cp ${CID}:/artifacts/api_change-artifacts.zip ${{ github.workspace }}/artifacts | ||
docker stop ${CID} | ||
docker rm ${CID} | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: api-change | ||
path: ${{ github.workspace }}/artifacts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: Build ESMF Docs | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
|
||
concurrency: | ||
group: build-esmf-docs-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Checkout Dockerfiles | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: esmf-org/esmf-containers | ||
path: esmf-containers | ||
ref: main | ||
|
||
- name: Build Docker image | ||
run: | | ||
cd ${{ github.workspace }}/esmf-containers/build-esmf-docs/esmf | ||
docker build . --tag esmf/build-esmf-docs --build-arg ESMF_BRANCH="${{ github.ref_name }}" --no-cache | ||
- name: Extract artifacts | ||
run: | | ||
mkdir -p ${{ github.workspace }}/artifacts | ||
CID=$(docker run -dit --name runner esmf/build-esmf-docs) | ||
docker cp ${CID}:/artifacts/doc-artifacts.zip ${{ github.workspace }}/artifacts | ||
docker stop ${CID} | ||
docker rm ${CID} | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: esmf-docs | ||
path: ${{ github.workspace }}/artifacts | ||
|
||
- name: Checkout esmf-org.github.io | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: esmf-org/esmf-org.github.io | ||
path: esmf-org.github.io | ||
token: ${{ secrets.ESMF_WEB_TOKEN }} | ||
|
||
- name: Copy docs | ||
run: | | ||
cd ${{ github.workspace }}/esmf-org.github.io | ||
mkdir -p docs/nightly/${{ github.ref_name }}/dev_guide | ||
cd ${{ github.workspace }}/artifacts | ||
unzip doc-artifacts.zip | ||
cd ${{ github.workspace }}/artifacts/artifacts/doc-esmf | ||
cp -rf ./* ${{ github.workspace }}/esmf-org.github.io/docs/nightly/${{ github.ref_name }}/ | ||
cd ${{ github.workspace }}/artifacts/artifacts/doc-nuopc | ||
cp -rf NUOPC_refdoc ${{ github.workspace }}/esmf-org.github.io/docs/nightly/${{ github.ref_name }}/ | ||
cp -rf NUOPC_refdoc.pdf ${{ github.workspace }}/esmf-org.github.io/docs/nightly/${{ github.ref_name }}/ | ||
cp -rf NUOPC_howtodoc ${{ github.workspace }}/esmf-org.github.io/docs/nightly/${{ github.ref_name }}/ | ||
cp -rf NUOPC_howtodoc.pdf ${{ github.workspace }}/esmf-org.github.io/docs/nightly/${{ github.ref_name }}/ | ||
cd ${{ github.workspace }}/artifacts/artifacts/doc-dev_guide | ||
cp -rf ./dev_guide/dev_guide/* ${{ github.workspace }}/esmf-org.github.io/docs/nightly/${{ github.ref_name }}/dev_guide/ | ||
- name: Commit and publish docs | ||
uses: actions-js/push@master | ||
with: | ||
repository: esmf-org/esmf-org.github.io | ||
directory: ${{ github.workspace }}/esmf-org.github.io | ||
branch: master | ||
github_token: ${{ secrets.ESMF_WEB_TOKEN }} | ||
message: 'Publish ESMF Docs' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: Build ESMPy Docs | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
|
||
concurrency: | ||
group: build-esmpy-docs-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Checkout Dockerfiles | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: esmf-org/esmf-containers | ||
path: esmf-containers | ||
ref: main | ||
|
||
- name: Build Docker image | ||
run: | | ||
cd ${{ github.workspace }}/esmf-containers/build-esmf-docs/esmpy | ||
docker build . --tag esmf/build-esmpy-docs --build-arg ESMF_BRANCH="${{ github.ref_name }}" --no-cache | ||
- name: Copy artifacts | ||
run: | | ||
mkdir -p ${{ github.workspace }}/artifacts | ||
CID=$(docker run -dit --name runner esmf/build-esmpy-docs) | ||
docker cp ${CID}:/artifacts/doc-esmpy.zip ${{ github.workspace }}/artifacts | ||
docker stop ${CID} | ||
docker rm ${CID} | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: esmpy-docs | ||
path: ${{ github.workspace }}/artifacts | ||
|
||
- name: Checkout esmpy_doc | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: esmf-org/esmpy_doc | ||
path: esmpy_doc | ||
token: ${{ secrets.ESMF_WEB_TOKEN }} | ||
|
||
- name: Copy docs | ||
run: | | ||
cd ${{ github.workspace }}/esmpy_doc | ||
mkdir -p docs/nightly/${{ github.ref_name }} | ||
cd ${{ github.workspace }}/artifacts | ||
unzip doc-esmpy.zip | ||
cd ${{ github.workspace }}/artifacts/doc-esmpy/esmpy_doc | ||
cp -rf html ${{ github.workspace }}/esmpy_doc/docs/nightly/${{ github.ref_name }}/ | ||
cp -rf latex/ESMPy.pdf ${{ github.workspace }}/esmpy_doc/docs/nightly/${{ github.ref_name }}/ | ||
- name: Commit and publish docs | ||
uses: actions-js/push@master | ||
with: | ||
repository: esmf-org/esmpy_doc | ||
directory: ${{ github.workspace }}/esmpy_doc | ||
branch: master | ||
github_token: ${{ secrets.ESMF_WEB_TOKEN }} | ||
message: 'Publish ESMPy Docs' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Test Coverage | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
esmf_branch: | ||
description: 'ESMF Branch' | ||
required: true | ||
default: 'develop' | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Checkout Dockerfiles | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: esmf-org/esmf-containers | ||
path: esmf-containers | ||
ref: main | ||
|
||
- name: Build Docker image | ||
run: | | ||
cd ${{ github.workspace }}/esmf-containers/test-coverage | ||
docker build . --tag esmf/test-coverage --build-arg ESMF_BRANCH="${{ inputs.esmf_branch }}" | ||
- name: Copy artifacts | ||
run: | | ||
mkdir -p ${{ github.workspace }}/artifacts | ||
CID=$(docker run -dit --name runner esmf/test-coverage) | ||
docker cp ${CID}:/artifacts/test_coverage-artifacts.zip ${{ github.workspace }}/artifacts | ||
docker stop ${CID} | ||
docker rm ${CID} | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: test-coverage | ||
path: ${{ github.workspace }}/artifacts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.