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

Hotfix issue 399 #407

Merged
merged 4 commits into from
Nov 21, 2023
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
8 changes: 7 additions & 1 deletion .github/workflows/run_testsuite_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ jobs:
ref: ${{ inputs.systests_branch }}
lfs: true
fetch-depth: 0
- name: Map remote branches to local ones
run: |
/home/precice/runners_root/scripts/map_origin_to_local.sh ./
valentin-seitz marked this conversation as resolved.
Show resolved Hide resolved
- name: Install Python dependencies
run: |
pip install --user -r tools/tests/requirements.txt
Expand All @@ -63,4 +66,7 @@ jobs:
with:
name: runs
path: |
runs/*
runs/*
- name: tidy up the docker
run: |
docker network prune -f
4 changes: 1 addition & 3 deletions tools/tests/systemtests/Systemtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,7 @@ def _fetch_ref(self, repository: Path, ref: str):
result = subprocess.run([
"git",
"-C", os.fspath(repository.resolve()),
"fetch",
"origin",
f"{ref}:{ref}"
"fetch"
], check=True, timeout=60)
if result.returncode != 0:
raise RuntimeError(f"git command returned code {result.returncode}")
Expand Down
Loading