Skip to content
Snippets Groups Projects
Commit 7e5d31df authored by George Sedov's avatar George Sedov
Browse files

Update .gitlab-ci.yml file

parent c2da5214
No related branches found
No related tags found
No related merge requests found
......@@ -59,3 +59,30 @@ test-services-linux-debug:
when: always
reports:
junit: build/testResult.xml
build-services-linux-release:
extends: .go-cache
image:
name: $CI_REGISTRY_IMAGE/asapo-services-linux-build-env:latest
entrypoint: [""]
stage: build
script:
- mkdir $CI_PROJECT_DIR/build
- cd $CI_PROJECT_DIR/build
- cmake3 -DCMAKE_BUILD_TYPE=Release -DBUILD_EXAMPLES=ON -DBUILD_CONSUMER_TOOLS=ON -DBUILD_BROKER=ON -DBUILD_INTEGRATION_TESTS=ON -DENABLE_LIBFABRIC=ON -DBUILD_CPP_DOCS=ON -DBUILD_EVENT_MONITOR_PRODUCER=ON -DSTOP_BUILD_ON_WARNINGS=ON -DENABLE_NEW_RECEIVER_MONITORING=ON ..
- make -j 4
tags:
- kubernetes-executor
rules:
- when: always
artifacts:
paths:
- build
exclude:
- build/**/CMakeFiles/**/*.o
- build/**/CMakeFiles/**/*.gcno
- build/**/CMakeFiles/**/*.gcda
- build/**/CMakeFiles/**/*.objlib
- build/**/CMakeFiles/**/*.includecache
- build/**/*.a
expire_in: 3 hrs
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment