From c75574d0847519e00d1250a22b9b3ccf57aa7751 Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Wed, 12 Oct 2022 18:25:39 +0200
Subject: [PATCH] (ci) Remove runners tags
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Doesn’t make sense anymore
Was set up to load equaly the load onto the two runners
I am fine with the fact that runners takes the jobs by
themselves dependending on their availabilities
---
 .gitlab-ci.yml | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7084212..760af18 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -61,7 +61,6 @@ lint:
     - .code_changes
     - .pre-commit
   stage: checks
-  tags: [redshift]
   script:
     - pre-commit run --all-files pylint
 
@@ -91,26 +90,22 @@ type:
 
 tests:3.7:
   extends: .tests
-  tags: [mille]
   variables:
     PYTHON_VERSION: "3.7"
 
 tests:3.8:
   extends: .tests
-  tags: [redshift]
   variables:
     PYTHON_VERSION: "3.8"
 
 tests:3.9:cov:
   extends: .tests
-  tags: [redshift]
   script:
     - poetry install
     - poetry run pytest --cov duniterpy --cov-report html:cov_html --cov-report term
 
 tests:3.10:
   extends: .tests
-  tags: [redshift]
   variables:
     PYTHON_VERSION: "3.10"
 
-- 
GitLab