summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchenzizhan <[email protected]>2024-10-23 18:14:39 +0800
committerchenzizhan <[email protected]>2024-10-23 18:14:39 +0800
commitff2357bb1d2af70dda26029ae02f62ef42d96ac2 (patch)
tree2a0c5986a308e8d08714605198f12b138f73cf84
parentb883f51910cf155d99f1aa03847d5dac2e690f1d (diff)
parent455e94e3bf43ceceb195f79474fc44129e50bfa8 (diff)
Merge branch 'develop-version4' of git.mesalab.cn:tango/FieldStat into develop-version4v4.6.8
-rw-r--r--.gitlab-ci.yml108
1 files changed, 0 insertions, 108 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ec630df..5c24098 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,19 +21,6 @@ stages:
- yum install -y zlib
- python3 -m pip install prettytable jinja2
-
-.build_by_travis_for_centos7:
- stage: build
- image: $BUILD_IMAGE_CENTOS7
- extends: .build_before_script
- script:
- - yum install -y libmnl-devel
- - yum install -y libnfnetlink-devel
- - ./ci/travis.sh
- - cd build
- tags:
- - share
-
.build_by_travis_for_centos8:
stage: build
image: $BUILD_IMAGE_CENTOS8
@@ -45,101 +32,6 @@ stages:
tags:
- share
-branch_build_debug_for_centos7:
- stage: build
- extends: .build_by_travis_for_centos7
- variables:
- BUILD_TYPE: Debug
- UNIT_TEST: 1
- except:
- - /^develop-*$/i
- - /^master.*$/i
- - tags
-
-branch_build_release_for_centos7:
- stage: build
- variables:
- BUILD_TYPE: RelWithDebInfo
- UNIT_TEST: 1
- extends: .build_by_travis_for_centos7
- except:
- - /^develop-*$/i
- - /^master.*$/i
- - tags
-
-develop_build_debug_for_centos7:
- stage: build
- extends: .build_by_travis_for_centos7
- variables:
- BUILD_TYPE: Debug
- UNIT_TEST: 1
- PACKAGE: 1
- UPLOAD_RPM: 1
- ASAN_OPTION: ADDRESS
- TESTING_VERSION_BUILD: 1
- PULP3_REPO_NAME: framework-testing-x86_64.el7
- PULP3_DIST_NAME: framework-testing-x86_64.el7
- artifacts:
- name: "fieldstat4-$CI_COMMIT_REF_NAME-debug"
- paths:
- - build/*.rpm
- only:
- - /^develop-*$/i
- - /^master.*$/i
-
-develop_build_release_for_centos7:
- stage: build
- extends: .build_by_travis_for_centos7
- variables:
- BUILD_TYPE: RelWithDebInfo
- UNIT_TEST: 1
- PACKAGE: 1
- UPLOAD_RPM: 1
- TESTING_VERSION_BUILD: 1
- PULP3_REPO_NAME: framework-testing-x86_64.el7
- PULP3_DIST_NAME: framework-testing-x86_64.el7
- artifacts:
- name: "fieldstat4-$CI_COMMIT_REF_NAME-release"
- paths:
- - build/*.rpm
- only:
- - /^develop-*$/i
- - /^master.*$/i
-
-release_build_debug_for_centos7:
- stage: build
- variables:
- BUILD_TYPE: Debug
- UNIT_TEST: 1
- PACKAGE: 1
- UPLOAD_RPM: 1
- PULP3_REPO_NAME: framework-stable-x86_64.el7
- PULP3_DIST_NAME: framework-stable-x86_64.el7
- extends: .build_by_travis_for_centos7
- artifacts:
- name: "fieldstat4-$CI_COMMIT_REF_NAME-debug"
- paths:
- - build/*.rpm
- only:
- - tags
-
-release_build_release_for_centos7:
- stage: build
- variables:
- BUILD_TYPE: RelWithDebInfo
- UNIT_TEST: 1
- PACKAGE: 1
- UPLOAD_RPM: 1
- PULP3_REPO_NAME: framework-stable-x86_64.el7
- PULP3_DIST_NAME: framework-stable-x86_64.el7
- extends: .build_by_travis_for_centos7
- artifacts:
- name: "fieldstat4-$CI_COMMIT_REF_NAME-release"
- paths:
- - build/*.rpm
- only:
- - tags
-
branch_build_debug_for_centos8:
stage: build
extends: .build_by_travis_for_centos8