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

Adjust testing for new path checker file #16

Merged
merged 16 commits into from
Jun 18, 2024
13 changes: 6 additions & 7 deletions .github/workflows/run_jcb_basic_testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ jobs:
JCB_REPO: https://github.com/NOAA-EMC/jcb.git

steps:
- name: Checkout application client repository
uses: actions/checkout@v3
with:
submodules: true

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -63,10 +58,14 @@ jobs:
git config --global core.hooksPath empty_hooks
git clone --branch ${{ env.JCB_BRANCH }} --recursive $JCB_REPO jcb_repo

- name: Switch the application branch to match the action
- name: Clone the clients
run: |
cd jcb_repo
cd $(python get_submod_path.py $JCB_APP_REPO)
pip install pyyaml
./jcb_client_init.py
app_path=$(python jcb_client_path.py $JCB_APP_REPO)
echo "Application path: $app_path"
cd $app_path
git checkout ${{ env.JCB_APP_BRANCH }}

- name: Install dependencies
Expand Down
Loading