Select Git revision
.gitlab-ci.yml
Forked from
LABOUREL Arnaud / M1 INFO FSI TP Template
Source project has a limited visibility.
-
LABOUREL Arnaud authoredLABOUREL Arnaud authored
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/"