Commit 20761ab7 authored by Maxence Naud's avatar Maxence Naud
Browse files

update many tags

parent 9a50e8a3
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -3,6 +3,10 @@ include:

release:pip:ubuntu:
  extends: .release:pip:template
  tags:
    - release
    - linux
    - docker
  needs:
    - build:ubuntu_python
    - test:ubuntu_python
+2 −1
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ release:pip:windows:
  extends: .release:pip:template
  # image: mcr.microsoft.com/powershell:latest
  tags:
    - release
    - windows

  # temporary rules until https://gitlab.eclipse.org/eclipse/aidge/aidge/-/issues/136 is closed
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@ release:pip:ubuntu:
  extends: .release:pip:template
  tags:
    - docker
    - release
    - linux
  needs:
    - build:ubuntu_python
    - test:ubuntu_python
+10 −0
Original line number Diff line number Diff line
@@ -31,6 +31,8 @@ include:
    - .setup:build:ubuntu_cpp
  tags:
    - docker
    - linux
    - build
  artifacts:
    expire_in: 3 days
    paths:
@@ -56,6 +58,8 @@ build:ubuntu_cpp:g++:
    - .rules:build:merge_pipeline_or_branch_dev_main
  tags:
    - docker
    - linux
    - build
  parallel:
    matrix:
      - Gplusplus_VERSION: ["10","12"]
@@ -75,6 +79,8 @@ build:ubuntu_cpp:clang:
    - .rules:build:merge_pipeline_or_branch_dev_main
  tags:
    - docker
    - linux
    - build
  parallel:
    matrix:
      - CLANG_VERSION: ["12","15"]
@@ -98,6 +104,8 @@ test:ubuntu_cpp:
    - allow_failure: false
  tags:
    - docker
    - linux
    - test
  before_script :
    # Download dependencies
    - !reference [.retrieve_deps:apt, script]
@@ -120,6 +128,8 @@ coverage:ubuntu_cpp:
    - .rules:static_analysis_coverage
  tags:
    - docker
    - coverage
    - linux
  before_script:
    - !reference [.retrieve_deps:apt, script]
    - apt-get install -qq -y gcovr
+6 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@ build:ubuntu_python:
  needs: []
  tags:
    - docker
    - linux
    - build
  extends: .setup:build:ubuntu_python

  script:
@@ -52,6 +54,8 @@ test:ubuntu_python:
    - when: on_success
  tags:
    - docker
    - linux
    - test
  extends: .setup:test:ubuntu_python
  script:
    - cd ${CI_PROJECT_NAME}
@@ -81,6 +85,8 @@ coverage:ubuntu_python:
    - when: always
  tags:
    - docker
    - linux
    - coverage
  script:
    - echo "WARNING The coverage:ubuntu_python job is deprecated and will be removed in future versions."
    - echo "Please run tests with coverage in the test:ubuntu_python job instead."
Loading