Skip to content

Commit

Permalink
Moving solverdummy into examples folder (#141)
Browse files Browse the repository at this point in the history
* Moving solverdummy into examples/ folder

* Insert correct path of solverdummy in build-and-test workflow
  • Loading branch information
IshaanDesai authored May 3, 2022
1 parent 8eee607 commit cd13ecc
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,5 +136,7 @@ jobs:
- name: Run pip install
run: pip3 install --user .
- name: Run solverdummy
run: python3 solverdummy/solverdummy.py solverdummy/precice-config.xml SolverOne MeshOne & python3 solverdummy/solverdummy.py solverdummy/precice-config.xml SolverTwo MeshTwo
run: |
cd examples/solverdummy/
python3 solverdummy.py precice-config.xml SolverOne MeshOne & python3 solverdummy.py precice-config.xml SolverTwo MeshTwo
2 changes: 1 addition & 1 deletion .github/workflows/run-solverdummy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
run: python3 -c "import precice; assert({item.split('=')[0]:item.split('=')[-1] for item in str(precice.get_version_information()).split(';')}['PRECICE_MPICommunication']=='Y')"
- name: Run solverdummies
run: |
cd solverdummy/
cd examples/solverdummy/
python3 solverdummy.py precice-config.xml SolverOne MeshOne & python3 solverdummy.py precice-config.xml SolverTwo MeshTwo
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit cd13ecc

Please sign in to comment.