Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
sambles committed Jun 24, 2024
1 parent d5895f4 commit 234e7ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/run_mdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ jobs:
pip uninstall ods_tools -y
pip install ${{ needs.ods_tools.outputs.whl_filename }}
- name: install wheel
run: |
pip install wheel
- name: run MDK
run: |
./run_mdk.py --model-repo-branch ${{ env.PIWIND_BRANCH}} \
Expand Down
2 changes: 1 addition & 1 deletion tests/run_mdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def cleanup(pip_path=get_default_pip_path(), mdk_pkg_name='oasislmf', model_run_
if args['git_transfer_protocol'] not in ['https', 'ssh']:
args['git_transfer_protocol'] = 'ssh'

pkg_uri = 'git+{}://[email protected]/OasisLMF/OasisLMF.git@{}#egg=oasislmf[extra]'.format(args['git_transfer_protocol'], args['mdk_repo_branch'])
pkg_uri = 'oasislmf[extra]@git+{}://[email protected]/OasisLMF/OasisLMF.git@{}'.format(args['git_transfer_protocol'], args['mdk_repo_branch'])

print('\nInstalling MDK package {}'.format(pkg_uri))

Expand Down

0 comments on commit 234e7ae

Please sign in to comment.