-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* edited yaml * fix spacing in yaml * add run * fix container address * fix container address * try again * try again * testing * change checkout version * fix checkout * fix checkout * oops no git in container * oops no git in container * oops github * submodule woes * home * home * remove init * dubious ownership * testing checkout * whereami * whereami * whereami * whereami * new container * change working directory * new container * git issues * git issues * git issues * omg git * omg git * new container * conda activate * use conda * conda init bash * conda again * conda inited already * try again * constraints.txt * test * pip3 * get the right python version * consolidate runs * consolidate runs * remove cd * test pace:test * fix spacing * test checkout path * test working directory * test working directory * test working directory * change ordering * update grid unit test * modify eta test * update yaml file * oops nevermind nevermind * restore yaml file * add Dockerfile * use script to run tests * fix typo s * chmod typo * change registry * add concurrency, copied from fms * typo * remove push * unmake unecessary changes * test * lint * xfail update * Update .gitmodules * edit README.md * update tests and readme * add push * fix home * fix home * add dockerfile * fix mistakes on Docerkfile * additional dockerfiles * openmpi * test * add mpich * try again * remove test_scripts dir * update to test with openmpi and mpich * finally * noaa to readme * type missed [ * update to reality --------- Co-authored-by: mlee03 <[email protected]>
- Loading branch information
Showing
4 changed files
with
97 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,26 @@ | ||
name: "Main unit tests with mpich" | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | ||
|
||
# cancel running jobs if theres a newer push | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
main_unit_tests: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ghcr.io/noaa-gfdl/pace_mpich:3.8 | ||
steps: | ||
- name: Checkout Pace repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: setup env and run tests (test) | ||
run: | | ||
cp /home/scripts/setup_env.sh . && chmod +x setup_env.sh | ||
cp /home/scripts/run_tests.sh . && chmod +x run_tests.sh | ||
./setup_env.sh | ||
./run_tests.sh |
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,26 @@ | ||
name: "Main unit tests with openmpi" | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | ||
|
||
# cancel running jobs if theres a newer push | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
main_unit_tests: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ghcr.io/noaa-gfdl/pace_openmpi:3.8 | ||
steps: | ||
- name: Checkout Pace repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: setup env and run tests | ||
run: | | ||
cp /home/scripts/setup_env.sh . && chmod +x setup_env.sh | ||
cp /home/scripts/run_tests.sh . && chmod +x run_tests.sh | ||
./setup_env.sh | ||
./run_tests.sh |
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