Commit 104210cf authored by Konstantinos Togias's avatar Konstantinos Togias
Browse files

Pin GitLab CI jobs to tagged Docker runner (avoid shell executor pip

  failures)
parent 93efd8e2
Loading
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -3,12 +3,17 @@ stages:
  - build
  - publish

default:
  image: python:3.12-slim
  tags:
    - docker
    - vim

variables:
  PACKAGE_NAME: sunrise6g-opensdk

validate-mr:
  stage: validate
  image: python:3.12-slim
  before_script:
    - echo "Running merge request validation..."
    - pip install -r requirements.txt
@@ -27,7 +32,6 @@ validate-mr:

build-package:
  stage: build
  image: python:3.12-slim
  before_script:
    - pip install build twine
    - pip install -r requirements.txt
@@ -48,7 +52,6 @@ build-package:

publish-gitlab:
  stage: publish
  image: python:3.12-slim
  dependencies:
    - build-package
  before_script: