Skip to content
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

Rrfs ci simple - for use in testing github actions #161

Draft
wants to merge 26 commits into
base: rrfs_ci
Choose a base branch
from
Draft
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
19e87cc
Merge pull request #3 from NOAA-EMC/develop
christinaholtNOAA Sep 22, 2020
3a45093
Merge remote-tracking branch 'dtc/develop' into develop
christinaholtNOAA Nov 6, 2020
bf61ad1
Created a hello world automation
venitahagerty Jul 14, 2021
bc809a3
Created hello world automation in correct folder
venitahagerty Jul 14, 2021
939f8c9
fixed indentation error
venitahagerty Jul 14, 2021
2113079
Created in wrong directory
venitahagerty Jul 14, 2021
6873b43
Merge branch 'NOAA-EMC:develop' into rrfs_ci_simple
venitahagerty Sep 15, 2021
29ac286
Add end to end test script. (#179) (#204)
venitahagerty Sep 16, 2021
dbaccbd
Changed a directory from fim (did not exist) to gsd-fv3
venitahagerty Oct 8, 2021
cea1f22
Added a second experiment
venitahagerty Nov 1, 2021
6d6b386
Removed comma between 2 test names
venitahagerty Nov 1, 2021
d7a99be
Changed syntax for expts to get multiple lines
venitahagerty Nov 2, 2021
d22be66
Added -e option to echos of expt name file
venitahagerty Nov 2, 2021
29d7905
Merge branch 'NOAA-EMC:develop' into develop
christinaholtNOAA Dec 8, 2021
3bfe8fc
Merge branch 'NOAA-EMC:develop' into develop
christinaholtNOAA Jan 14, 2022
b8ef2dd
Merge branch 'NOAA-EMC:develop' into develop
christinaholtNOAA Jan 21, 2022
f8d4a24
resolved merge conflict
venitahagerty Feb 16, 2022
a87e44a
removed old end_to_end_tests.sh
venitahagerty Feb 16, 2022
190060a
Merge branch 'ufs-community:develop' into develop
christinaholtNOAA Feb 17, 2022
5446733
Add 5 additional tests to hera
venitahagerty Mar 15, 2022
09f7bde
Added a 2nd test
venitahagerty Mar 16, 2022
4f69220
Added 4 more tests to jet
venitahagerty Mar 16, 2022
09d0ef0
took out GSD_SAR tests on hera
venitahagerty Mar 17, 2022
aa5f12a
Expand test suites
venitahagerty Mar 23, 2022
5672bb7
adding back invalid test for testing
venitahagerty Mar 31, 2022
560212d
merged rrfs_ci into rrfs_ci_simple
venitahagerty Jun 21, 2022
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
26 changes: 26 additions & 0 deletions .github/workflows/simple.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Shell Commands

on:
push:
branches: [rrfs_ci_simple]
workflow_dispatch:

defaults:
run:
shell: bash -leo pipefail {0}

jobs:
run-shell-command:
runs-on: ubuntu-latest
steps:
- name: echo a string
run: echo "Hello World"
- name: multiline script
run: |
node -v
pwd
- name: python command
run: |
import platform
print (platform.processor())
shell: python