Skip to content
Snippets Groups Projects
Select Git revision
  • f913ca089f2e4bbe68e08cf787c3d20e6e028add
  • main default protected
2 results

.gitlab-ci.yml

Blame
  • Forked from LABOUREL Arnaud / M1 INFO FSI TP Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .gitlab-ci.yml 635 B
    include:
      - local: 'TP2/.gitlab-ci.yml'
    
    ## my_folder/build.yml
    # the `.` (dot) before build means that we don't want it run alone, we must
    # extends to run this part
    .build:
      variables:
        SOFTWARE_ROOT: ""
      script:
        - build ${SOFTWARE_ROOT}
    
    build_tp_2:
      extends: .build
      variables:
        SOFTWARE_ROOT: "TP2/"
    
    
    .test:
      variables:
        SOFTWARE_ROOT: ""
      script:
        - test ${SOFTWARE_ROOT}
    
    test_tp_2:
      extends: .test
      variables:
        SOFTWARE_ROOT: "TP2/"
    
    
    .coverage:
      variables:
        SOFTWARE_ROOT: ""
      script:
        - coverage ${SOFTWARE_ROOT}
    
    coverage_tp_2:
      extends: .coverage
      variables:
        SOFTWARE_ROOT: "TP2/"