-
Notifications
You must be signed in to change notification settings - Fork 210
Update HPC Tier Definitions #3138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
83d76cd
Update the supported platform list
DavidHuber-NOAA 1f1bcce
Reformat the table
DavidHuber-NOAA d9b7ca9
Reformat table again
DavidHuber-NOAA 14f30df
More formatting changes
DavidHuber-NOAA 385c039
More formatting and content
DavidHuber-NOAA 4a9df1e
Rearrange
DavidHuber-NOAA 18d92f1
More rearrangements. Update badges.
DavidHuber-NOAA ac1a69e
Add more badges
DavidHuber-NOAA c60aedf
Merge branch 'NOAA-EMC:develop' into doc/hpc_tiers
DavidHuber-NOAA ff54a88
Add workflows to get Hercules and WCOSS2 status
DavidHuber-NOAA 4e8434f
Update README.md
DavidHuber-NOAA cdbd1ea
Typo
DavidHuber-NOAA dfc11b5
Add capabilities table
DavidHuber-NOAA 1c660a1
Remove Orion badge
DavidHuber-NOAA f7b58e0
Merge branch 'doc/hpc_tiers' of github.com:davidhuber-noaa/global-wor…
DavidHuber-NOAA 6ad77e0
Merge branch 'develop' into doc/hpc_tiers
DavidHuber-NOAA 723f777
Try reformatting again
DavidHuber-NOAA 341be87
Try reformatting again
DavidHuber-NOAA d55a75d
Reformat table again
DavidHuber-NOAA 39ea5f1
Try a list table
DavidHuber-NOAA c80994c
Merge remote-tracking branch 'emc/develop' into doc/hpc_tiers
DavidHuber-NOAA 7ba61d1
Narrow the table a bit
DavidHuber-NOAA 8c662a5
Update Orion TC tracker support info
DavidHuber-NOAA 6b6e4cb
Merge branch 'develop' into doc/hpc_tiers
aerorahul 703a581
Merge branch 'develop' into doc/hpc_tiers
aerorahul File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,81 @@ | ||
| name: WCOSS2 | ||
|
|
||
| on: | ||
| pull_request_target: | ||
| branches: | ||
| - develop | ||
| types: [closed] | ||
|
|
||
| jobs: | ||
|
|
||
| getlabels: | ||
| runs-on: ubuntu-22.04 | ||
| outputs: | ||
| labels: ${{ steps.id.outputs.labels }} | ||
| steps: | ||
| - name: Get Label Steps | ||
| id: id | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| OWNER: ${{ github.repository_owner }} | ||
| REPO_NAME: ${{ github.event.repository.name }} | ||
| PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} | ||
| run: | | ||
| LABELS1="$(gh api repos/$OWNER/$REPO_NAME/pulls/$PULL_REQUEST_NUMBER --jq '.labels.[].name')" | ||
| LABELS=$(echo "$LABELS1" | tr '\n' ' ') | ||
| echo "labels=$LABELS" >> $GITHUB_OUTPUT | ||
|
|
||
| passed: | ||
| if: contains( needs.getlabels.outputs.labels, 'CI-Wcoss2-Passed') && github.event.pull_request.merged | ||
| runs-on: ubuntu-latest | ||
| needs: | ||
| - getlabels | ||
|
|
||
| steps: | ||
| - name: Passed | ||
| uses: schneegans/dynamic-badges-action@v1.6.0 | ||
| with: | ||
| forceUpdate: true | ||
| auth: ${{ secrets.CLI_DYNAMIC_BADGES }} | ||
| gistID: e35aa2904a54deae6bbb1fdc2d960c71 | ||
| filename: wcoss2.json | ||
| label: wcoss2 | ||
| message: passing | ||
| color: green | ||
|
|
||
| failed: | ||
| if: contains( needs.getlabels.outputs.labels, 'CI-Wcoss2-Failed') && github.event.pull_request.merged | ||
| runs-on: ubuntu-latest | ||
| needs: | ||
| - getlabels | ||
|
|
||
| steps: | ||
| - name: Failed | ||
| uses: schneegans/dynamic-badges-action@v1.6.0 | ||
| with: | ||
| forceUpdate: true | ||
| auth: ${{ secrets.CLI_DYNAMIC_BADGES }} | ||
| gistID: e35aa2904a54deae6bbb1fdc2d960c71 | ||
| filename: wcoss2.json | ||
| label: wcoss2 | ||
| message: failing | ||
| color: red | ||
|
|
||
|
|
||
| pending: | ||
| if: "!contains( needs.getlabels.outputs.labels, 'CI-Wcoss2-Passed') && !contains( needs.getlabels.outputs.labels, 'CI-Wcoss2-Failed')" | ||
| runs-on: ubuntu-latest | ||
| needs: | ||
| - getlabels | ||
|
|
||
| steps: | ||
| - name: Pending | ||
| uses: schneegans/dynamic-badges-action@v1.6.0 | ||
| with: | ||
| forceUpdate: true | ||
| auth: ${{ secrets.CLI_DYNAMIC_BADGES }} | ||
| gistID: e35aa2904a54deae6bbb1fdc2d960c71 | ||
| filename: wcoss2.json | ||
| label: wcoss2 | ||
| message: pending | ||
| color: orange |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.