-
-
Notifications
You must be signed in to change notification settings - Fork 165
Make systemtest runs portable and re-runnable from CI artifacts #724
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
Open
PranjalManhgaye
wants to merge
4
commits into
precice:develop
Choose a base branch
from
PranjalManhgaye:fix-clean-scripts
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
ddd0eac
Make system test run directories portable for CI artifact replay
PranjalManhgaye 1f029f8
Merge branch 'develop' into fix-clean-scripts
PranjalManhgaye ee79179
Merge branch 'develop' into fix-clean-scripts
PranjalManhgaye 8592305
Address review feedback for portable system test artifact replay.
PranjalManhgaye File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| - Added the ability to replay system tests: System test artifacts now include a `rerun-system-test.sh` script and are prepared to be portable. [#724](https://github.com/precice/tutorials/pull/724) |
This file contains hidden or 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
This file contains hidden or 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,21 @@ | ||
| #!/usr/bin/env sh | ||
| set -e -u | ||
|
|
||
| cd "$(dirname "$0")" | ||
|
|
||
| # Unzipped CI artifacts are often owned by the host user. The prepare container | ||
| # runs as precice and must edit precice-config.xml in this directory. | ||
| chmod -R a+rwX . | ||
|
|
||
| echo "[systemtests] Building tutorial images..." | ||
| docker compose --file docker-compose.tutorial.yaml build | ||
|
|
||
| echo "[systemtests] Running tutorial containers..." | ||
| docker compose --file docker-compose.tutorial.yaml up | ||
|
PranjalManhgaye marked this conversation as resolved.
|
||
|
|
||
| if [ -f docker-compose.field_compare.yaml ]; then | ||
|
PranjalManhgaye marked this conversation as resolved.
|
||
| echo "[systemtests] Running fieldcompare..." | ||
| docker compose --file docker-compose.field_compare.yaml up --exit-code-from field-compare | ||
| else | ||
| echo "[systemtests] Skipping fieldcompare (docker-compose.field_compare.yaml not present; the original run likely failed before compare)." | ||
| fi | ||
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.