From cc0912eed0d9202bb5775770ec819539b5293bb6 Mon Sep 17 00:00:00 2001 From: yangwei Date: Mon, 21 Sep 2020 21:03:02 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=8Eci(.gitlab-ci.yml):=20=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0testing=E7=BC=96=E8=AF=91devel=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 56e59da..70737e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -92,6 +92,25 @@ release_build_release: except: - /^v[0-9].*-testing$/i +release_build_release_devel: + stage: build + variables: + BUILD_TYPE: RelWithDebInfo + ENABLE_DEVEL_SWITCH: "ON" + PACKAGE: 1 + UPLOAD: 1 + PULP3_REPO_NAME: framework-stable-x86_64.el7 + PULP3_DIST_NAME: framework-stable-x86_64.el7 + extends: .build_by_travis + artifacts: + name: "MESA_handle_logger-$CI_COMMIT_REF_NAME-release" + paths: + - build/*.rpm + only: + - tags + except: + - /^v[0-9].*-testing$/i + testing_build_release: stage: build variables: @@ -106,4 +125,21 @@ testing_build_release: paths: - build/*.rpm only: - - /^v[0-9].*-testing$/i \ No newline at end of file + - /^v[0-9].*-testing$/i + +testing_build_release_devel: + stage: build + variables: + BUILD_TYPE: RelWithDebInfo + ENABLE_DEVEL_SWITCH: "ON" + PACKAGE: 1 + UPLOAD: 1 + PULP3_REPO_NAME: framework-testing-x86_64.el7 + PULP3_DIST_NAME: framework-testing-x86_64.el7 + extends: .build_by_travis + artifacts: + name: "MESA_handle_logger-$CI_COMMIT_REF_NAME-release" + paths: + - build/*.rpm + only: + - /^v[0-9].*-testing$/i \ No newline at end of file