summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryangwei <[email protected]>2024-09-02 15:19:50 +0800
committeryangwei <[email protected]>2024-09-02 15:47:16 +0800
commite2f2823b9169b8c50c9a4e52cbeee7a2da8c5e1d (patch)
treeba696f1045b4361e1620569dac17907f63aaea0f
parent94a75460e9547389d5b7f72dd8467d1dfc29b599 (diff)
🐎 ci(test stage): disable artifacts, enable asan
-rw-r--r--.gitlab-ci.yml16
1 files changed, 6 insertions, 10 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2518f8e..17c428b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -85,10 +85,6 @@ branch_build_release_for_rockylinux:
variables:
BUILD_TYPE: RelWithDebInfo
extends: .build_by_travis_for_rockylinux
- artifacts:
- name: "stellar-branch-$CI_COMMIT_REF_NAME-release"
- paths:
- - build/*
except:
- /^develop-.*$/i
- /^release-.*$/i
@@ -112,10 +108,6 @@ develop_build_release_for_rockylinux:
TESTING_VERSION_BUILD: 1
BUILD_TYPE: RelWithDebInfo
#ASAN_OPTION: ADDRESS
- artifacts:
- name: "stellar-develop-$CI_COMMIT_REF_NAME-release"
- paths:
- - build/*
only:
- /^develop-.*$/i
- /^release-.*$/i
@@ -136,7 +128,7 @@ release_build_release_for_rockylinux:
artifacts:
name: "stellar-install-$CI_COMMIT_REF_NAME-release"
paths:
- - build/*
+ - build/infra/*.rpm
only:
- tags
@@ -146,9 +138,13 @@ release_build_release_for_rockylinux:
test_in_rockylinux:
stage: test
image: $BUILD_IMAGE_ROCKYLINUX
+ extends: .build_by_travis_for_rockylinux
+ variables:
+ BUILD_TYPE: Debug
+ ASAN_OPTION: ADDRESS
allow_failure: false
script:
- - *everything_before_script
+ - ./ci/travis.sh
- cd build; ctest -V
dependencies:
- branch_build_release_for_rockylinux