Skip to content
Snippets Groups Projects
Select Git revision
  • 74c024dbe7773ad56907767600044d6c8a114325
  • main default protected
  • variant
3 results

settings.gradle

Blame
  • Forked from COUETOUX Basile / FirefighterStarter
    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/"