mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-03-14 21:20:28 +01:00
Gitlab.yml: fix indentation
This commit is contained in:
parent
e22698c246
commit
7d4d46c123
1 changed files with 51 additions and 54 deletions
105
.gitlab-ci.yml
105
.gitlab-ci.yml
|
|
@ -14,20 +14,20 @@ include:
|
|||
- if: $CI_COMMIT_BRANCH == "devel"
|
||||
|
||||
stages:
|
||||
- static_code_analysis
|
||||
- unit_test
|
||||
- functional_test
|
||||
- deploy
|
||||
- static_code_analysis
|
||||
- unit_test
|
||||
- functional_test
|
||||
- deploy
|
||||
|
||||
run_unit_test:
|
||||
stage: unit_test
|
||||
image: ${COMMON_IMAGE}
|
||||
allow_failure: false
|
||||
script:
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/install-dependencies.sh"
|
||||
- "./gitlab-ci/setup.sh"
|
||||
- "./gitlab-ci/unit-test.sh"
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/install-dependencies.sh"
|
||||
- "./gitlab-ci/setup.sh"
|
||||
- "./gitlab-ci/unit-test.sh"
|
||||
artifacts:
|
||||
when: always
|
||||
paths:
|
||||
|
|
@ -38,77 +38,74 @@ run_tools_test:
|
|||
image: ${COMMON_IMAGE}
|
||||
allow_failure: false
|
||||
script:
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/tools-test.sh"
|
||||
- "./gitlab-ci/generate_supported_dm.sh"
|
||||
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/tools-test.sh"
|
||||
- "./gitlab-ci/generate_supported_dm.sh"
|
||||
artifacts:
|
||||
when: always
|
||||
paths:
|
||||
- out/datamodel_default.xml
|
||||
- out/datamodel_hdm.xml
|
||||
- out/datamodel.xls
|
||||
when: always
|
||||
paths:
|
||||
- out/datamodel_default.xml
|
||||
- out/datamodel_hdm.xml
|
||||
- out/datamodel.xls
|
||||
|
||||
run_libbbfdm_api_functional_test:
|
||||
stage: functional_test
|
||||
image: ${COMMON_IMAGE}
|
||||
allow_failure: false
|
||||
script:
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/install-dependencies.sh"
|
||||
- "./gitlab-ci/setup.sh"
|
||||
- "./gitlab-ci/functional-api-test.sh"
|
||||
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/install-dependencies.sh"
|
||||
- "./gitlab-ci/setup.sh"
|
||||
- "./gitlab-ci/functional-api-test.sh"
|
||||
artifacts:
|
||||
when: always
|
||||
paths:
|
||||
- functional-api-test-coverage.xml
|
||||
when: always
|
||||
paths:
|
||||
- functional-api-test-coverage.xml
|
||||
|
||||
run_libbbfdm_functional_test:
|
||||
stage: functional_test
|
||||
image: ${COMMON_IMAGE}
|
||||
allow_failure: false
|
||||
script:
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/install-dependencies.sh"
|
||||
- "./gitlab-ci/setup.sh"
|
||||
- "./gitlab-ci/functional-test.sh"
|
||||
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/install-dependencies.sh"
|
||||
- "./gitlab-ci/setup.sh"
|
||||
- "./gitlab-ci/functional-test.sh"
|
||||
artifacts:
|
||||
when: always
|
||||
paths:
|
||||
- functional-test-coverage.xml
|
||||
when: always
|
||||
paths:
|
||||
- functional-test-coverage.xml
|
||||
|
||||
run_libbbfdm_memory_test:
|
||||
stage: functional_test
|
||||
image: ${COMMON_IMAGE}
|
||||
allow_failure: false
|
||||
script:
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/install-dependencies.sh"
|
||||
- "./gitlab-ci/setup.sh"
|
||||
- "./gitlab-ci/memory-test.sh"
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/install-dependencies.sh"
|
||||
- "./gitlab-ci/setup.sh"
|
||||
- "./gitlab-ci/memory-test.sh"
|
||||
artifacts:
|
||||
when: always
|
||||
paths:
|
||||
- output-report-device-get.txt
|
||||
- memory-*.xml
|
||||
when: always
|
||||
paths:
|
||||
- output-report-device-get.txt
|
||||
- memory-*.xml
|
||||
|
||||
run_bbfd_functional_test:
|
||||
stage: functional_test
|
||||
image: ${COMMON_IMAGE}
|
||||
allow_failure: false
|
||||
script:
|
||||
stage: functional_test
|
||||
image: ${COMMON_IMAGE}
|
||||
allow_failure: false
|
||||
script:
|
||||
- "./gitlab-ci/pipeline_setup.sh"
|
||||
- "./gitlab-ci/install-dependencies.sh"
|
||||
- "./gitlab-ci/setup.sh"
|
||||
- "./gitlab-ci/bbfdmd-functional-test.sh"
|
||||
artifacts:
|
||||
when: always
|
||||
reports:
|
||||
junit: ./report/*.xml
|
||||
paths:
|
||||
- funl-result.log
|
||||
- funl-test-coverage.xml
|
||||
- report/
|
||||
- memory-*.xml
|
||||
artifacts:
|
||||
when: always
|
||||
reports:
|
||||
junit: ./report/*.xml
|
||||
paths:
|
||||
- funl-result.log
|
||||
- funl-test-coverage.xml
|
||||
- report/
|
||||
- memory-*.xml
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue