mirror of
https://dev.iopsys.eu/bbf/xmppc.git
synced 2025-12-20 01:11:39 +08:00
31 lines
645 B
YAML
31 lines
645 B
YAML
variables:
|
|
DEBUG: 'TRUE'
|
|
SOURCE_FOLDER: "./src"
|
|
|
|
include:
|
|
- project: 'iopsys/gitlab-ci-pipeline'
|
|
file: '/static-code-analysis.yml'
|
|
ref: '1.2'
|
|
|
|
stages:
|
|
- static_code_analysis
|
|
- functional_test
|
|
|
|
run_functional_test:
|
|
stage: functional_test
|
|
image: "${COMMON_IMAGE}"
|
|
allow_failure: false
|
|
script:
|
|
- "./gitlab-ci/install-dependencies.sh"
|
|
- "./gitlab-ci/setup.sh"
|
|
- "./gitlab-ci/functional-test.sh"
|
|
|
|
artifacts:
|
|
when: always
|
|
# reports:
|
|
# junit: ./report/tap.xml
|
|
paths:
|
|
- funl-test-coverage.xml
|
|
- memory-report.xml
|
|
- timestamp.log
|