From e388680f7b350f92b87a94b5c8d2a6c37ea6a7b8 Mon Sep 17 00:00:00 2001 From: dpuzyrkov <dpuzyrkov@gmail.com> Date: Mon, 1 Aug 2022 13:38:33 +0300 Subject: [PATCH] [+] .gitlab-ci: build with tests. --- .gitlab-ci.yml | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bd1c578c83..eeed25959a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,28 @@ +variables: + GIT_SUBMODULE_STRATEGY: recursive + stages: - - prepare - - analyze - build - - test + - deploy -variables: - GIT_SUBMODULE_STRATEGY: normal +.ci-polygon: + tags: + - ci-polygon + +.tests: + extends: .ci-polygon + stage: build + timeout: 3 hours 30 minutes + dependencies: [] + + +tests: + extends: .tests + image: demlabs/amd64/debian-bullseye:linuxbuilder + before_script: /opt/buildtools/prepare_environment.sh amd64-linux + script: + - mkdir build + - cd build && cmake .. -DBUILD_CELLFRAME_SDK_TESTS=ON -DOFF_CORE_CELLFRAME_SDK_TESTS_OFF=network-monitor -DOFF_CRYPTO_CELLFRAME_SDK_TESTS_OFF="new-hope, multisign" && make + + -cellframe-sdk-analyze: - stage: analyze - tags: - - cellframe-sdk - script: ~/production/integration/PVS-studio/analyze.sh - artifacts: - paths: - - report/issues.txt - when: always -- GitLab