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

reusable workflow CI - checkout corrrect repository #20

Merged
merged 16 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
File renamed without changes.
6 changes: 3 additions & 3 deletions .github/workflows/pace_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: "Pace unit tests"
name: "pace main tests"
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]

jobs:
pace_unit_tests:
uses: NOAA-GFDL/pace/.github/workflows/main_unit_tests.yaml@develop
with:
shield_trigger: true
component_trigger: true
component_name: pySHiELD
67 changes: 29 additions & 38 deletions .github/workflows/translate.yaml
Original file line number Diff line number Diff line change
@@ -1,87 +1,78 @@
name: "pySHiELD Translate test"
name: "PySHiELD translate tests"
on:
workflow_call:
inputs:
fv3_trigger:
type: boolean
component_trigger:
type: boolean
default: false
required: false
ndsl_trigger:
type: boolean
default: false
component_name:
type: string
default: ''
required: false
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

env:
github_repository: ${{github.event.repository.name}}

jobs:
pyshield_translate_tests:
runs-on: ubuntu-latest
container:
image: ghcr.io/noaa-gfdl/miniforge:mpich
steps:

- name: Checkout pyshield for externally triggered workflow
if: ${{inputs.ndsl_trigger || inputs.fv3_trigger}}
- name: external trigger Checkout pySHiELD
if: ${{inputs.component_trigger}}
uses: actions/checkout@v4
with:
repository: 'noaa-gfdl/PySHiELD'
submodules: 'recursive'
path: PySHiELD
repository: NOAA-GFDL/PySHiELD
path: pySHiELD
ref: develop

- name: Checkout repository that triggers workflow
- name: Checkout hash that triggered CI
uses: actions/checkout@v4
with:
submodules: 'recursive'
path: ${{env.github_repository}}

- name: prep directory for externally triggered workflow
if: ${{inputs.ndsl_trigger || inputs.fv3_trigger}}
run : |
cd ${GITHUB_WORKSPACE}
mv ${{env.github_repository}} PySHiELD/.
path: pySHiELD/${{inputs.component_name}}

- name: Install packages for ndsl_trigger
if : ${{inputs.ndsl_trigger}}
- name: external trigger Install packages for FV3 component
if : ${{contains(inputs.component_name, 'FV3')}}
run : |
cd ${GITHUB_WORKSPACE}/PySHiELD/
cd ${GITHUB_WORKSPACE}/pySHiELD
pip3 install --upgrade pip setuptools wheel
cd NDSL && pip3 install .[test]
cd ../ && pip3 install .[pyFV3,test]
cd ${{inputs.component_name}} && pip3 install .[test] && cd ..
pip3 install .[ndsl,test]

- name: Install packages for pyFV3 trigger
if: ${{inputs.fv3_trigger}}
- name: external trigger Install packages for NDSL component
if : ${{contains(inputs.component_name, 'NDSL')}}
run: |
cd ${GITHUB_WORKSPACE}/PySHiELD
cd ${GITHUB_WORKSPACE}/pySHiELD
pip3 install --upgrade pip setuptools wheel
cd PyFV3 && pip3 install .[test]
cd ../ && pip3 install .[ndsl,test]
cd ${{inputs.component_name}} && pip3 install .[test] && cd ..
pip3 install .[pyFV3,test]

- name: Install PySHiELD Python packages
if: ${{ !inputs.fv3_trigger && !inputs.ndsl_trigger}}
- name: Install pySHiELD packages
if: ${{ !inputs.component_trigger}}
run: |
cd ${GITHUB_WORKSPACE}/PySHiELD
cd ${GITHUB_WORKSPACE}/pySHiELD
pip3 install --upgrade pip setuptools wheel
pip3 install .[ndsl,pyFV3,test]

- name: Download data
run: |
cd ${GITHUB_WORKSPACE}/PySHiELD
cd ${GITHUB_WORKSPACE}/pySHiELD
mkdir -p test_data
cd test_data
wget https://portal.nccs.nasa.gov/datashare/astg/smt/pace-regression-data/8.1.3_c12_6ranks_baroclinic.physics.tar.gz
tar -xzvf 8.1.3_c12_6ranks_baroclinic.physics.tar.gz

- name: Numpy Translate Test
run: |
cd ${GITHUB_WORKSPACE}/PySHiELD
cd ${GITHUB_WORKSPACE}/pySHiELD
pytest \
-v -s --data_path=./test_data/8.1.3/c12_6ranks_baroclinic/physics \
--backend=numpy \
Expand All @@ -90,7 +81,7 @@ jobs:

- name: Orchestrated dace:cpu Translate Test
run: |
cd ${GITHUB_WORKSPACE}/PySHiELD
cd ${GITHUB_WORKSPACE}/pySHiELD
export FV3_DACEMODE=BuildAndRun
export PACE_FLOAT_PRECISION=64
export PACE_TEST_N_THRESHOLD_SAMPLES=0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
setup(
author="Vulcan Technologies LLC",
author_email="[email protected]",
python_requires=">=3.8",
python_requires=">=3.11.7",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
Expand Down
Loading