Skip to content
Snippets Groups Projects
Commit 11b07f32 authored by lukas leufen's avatar lukas leufen
Browse files

fix for not concurrent runners

parent 5a91bc0e
No related branches found
No related tags found
3 merge requests!90WIP: new release update,!89Resolve "release branch / CI on gpu",!85Resolve "new gitlab runner specialised for mlt"
Pipeline #33785 failed
......@@ -55,38 +55,6 @@ tests (from scratch):
- badges/
- test_results/
coverage (from scratch):
tags:
- base
- zam347
stage: test
only:
- master
- /^release.*$/
- develop
- lukas_issue095_tech_mlt-runner
variables:
FAILURE_THRESHOLD: 50
COVERAGE_PASS_THRESHOLD: 80
TEST_TYPE: "scratch"
before_script:
- chmod +x ./CI/update_badge.sh
- ./CI/update_badge.sh > /dev/null
script:
- zypper --non-interactive install binutils libproj-devel gdal-devel
- zypper --non-interactive install proj geos-devel
- pip install -r requirements.txt
- chmod +x ./CI/run_pytest_coverage.sh
- ./CI/run_pytest_coverage.sh
after_script:
- ./CI/update_badge.sh > /dev/null
artifacts:
name: pages
when: always
paths:
- badges/
- coverage/
### Tests (on GPU) ###
tests (on GPU):
tags:
......
......@@ -99,7 +99,7 @@ class TimeTracking(object):
def prepare_host(create_new=True, sampling="daily"):
hostname = socket.gethostname()
runner_regex = re.compile(r"runner-.*-project-2411-concurrent-\d+")
runner_regex = re.compile(r"runner-.*-project-2411-concurrent-?\d+")
try:
user = os.getlogin()
except OSError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment