diff options
author | Jakub Dudycz <jakub.dudycz@nokia.com> | 2018-08-07 09:32:43 +0200 |
---|---|---|
committer | Jakub Dudycz <jakub.dudycz@nokia.com> | 2018-08-07 09:32:43 +0200 |
commit | f16fff6a5c15474d86ea304b499535076d5a368c (patch) | |
tree | 13b76f93b0c0dff6b5d80c650fdc9004cca5c8cd /.gitlab-ci.yml | |
parent | 77f11bb84dc36638abcce8ffa1e1a67a3600b5a2 (diff) |
Clean up repository
There are some leftover from gitlab that should be removed from/updated in official repo.
Change-Id: I9e47321433ed2f744135b7fb85f140f381fe84e1
Issue-ID: DCAEGEN2-690
Signed-off-by: Jakub Dudycz <jakub.dudycz@nokia.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index c35353b3..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,52 +0,0 @@ -image: archive.docker-registry.eecloud.nsn-net.net/imp/matryoshka:latest - -stages: - - build - - publish - - trigger-integration-tests - -build: - stage: build - script: - - mvn -e -T2 -Panalysis clean install -Ddocker.http_proxy="http://$PROXY_HOST:$PROXY_PORT" -Ddocker.https_proxy="http://$PROXY_HOST:$PROXY_PORT" - artifacts: - paths: - - hv-collector-coverage/target/site/jacoco-aggregate - - hv-collector-core/target/reports - - hv-collector-main/target/reports - - hv-collector-utils/target/reports - - hv-collector-dcae-app-simulator/target/reports - - hv-collector-xnf-simulator/target/reports - -publish: - stage: publish - only: - - master - script: - - docker login $DOCKER_REPO_ADDR -u $DOCKER_REPO_USER -p $DOCKER_REPO_PASS - - | - mvn -e -DskipTests -DskipAnalysis \ - -Ddocker-image.registry="$DOCKER_REPO_ADDR" \ - -Ddocker.http_proxy="http://$PROXY_HOST:$PROXY_PORT" \ - -Ddocker.https_proxy="http://$PROXY_HOST:$PROXY_PORT" \ - deploy - - "curl -X POST -F token=$INTEGRATION_TESTS_TRIGGER_TOKEN -F ref=master https://gitlabe1.ext.net.nokia.com/api/v4/projects/33403/trigger/pipeline" - -pages: - stage: publish - only: - - master - dependencies: - - build - artifacts: - paths: - - public - script: - - mkdir -p public/analysis - - mv hv-collector-coverage/target/site/jacoco-aggregate public/coverage - - mv hv-collector-core/target/reports public/analysis/core - - mv hv-collector-main/target/reports public/analysis/main - - mv hv-collector-utils/target/reports public/analysis/utils - - mv hv-collector-dcae-app-simulator/target/reports public/analysis/dcae-app-simulator - - mv hv-collector-xnf-simulator/target/reports public/analysis/xnf-simulator - |