From c4cfabbddd206320a168e4949577e33c203695df Mon Sep 17 00:00:00 2001 From: fumingwei Date: Fri, 2 Jul 2021 11:17:43 +0800 Subject: [PATCH] =?UTF-8?q?feature:=E4=BF=AE=E6=94=B9.gitlab-ci.yml?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AF=B97400=E7=9A=84=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 100 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e1e5b627..504a7bd0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,6 +48,30 @@ feature_branch_build_9000: - /^rel-.*$/i - /^update-.*$/i +develop_build_7400_mcn0: + stage: build + extends: .build_tsg-buildimage + variables: + PROFILE_LIST: 7400MCN0P01R01 + UPLOAD_TO_FILE_REPO: 1 + PULP3_FILE_REPO_NAME: tsg-os-images-develop + PULP3_FILE_DIST_NAME: tsg-os-images-develop + DALIY_BUILD_VERSION: 1 + only: + - /^dev-.*$/i + +develop_build_7400_mcn123: + stage: build + extends: .build_tsg-buildimage + variables: + PROFILE_LIST: 7400MCN123P01R01 + UPLOAD_TO_FILE_REPO: 1 + PULP3_FILE_REPO_NAME: tsg-os-images-develop + PULP3_FILE_DIST_NAME: tsg-os-images-develop + DALIY_BUILD_VERSION: 1 + only: + - /^dev-.*$/i + develop_build_9000: stage: build extends: .build_tsg-buildimage @@ -60,6 +84,30 @@ develop_build_9000: only: - /^dev-.*$/i +testing_build_7400_mcn0: + stage: build + extends: .build_tsg-buildimage + variables: + PROFILE_LIST: 7400MCN0P01R01 + UPLOAD_TO_FILE_REPO: 1 + PULP3_FILE_REPO_NAME: tsg-os-images-testing + PULP3_FILE_DIST_NAME: tsg-os-images-testing + DALIY_BUILD_VERSION: 1 + only: + - /^rel-.*$/i + +testing_build_7400_mcn123: + stage: build + extends: .build_tsg-buildimage + variables: + PROFILE_LIST: 7400MCN123P01R01 + UPLOAD_TO_FILE_REPO: 1 + PULP3_FILE_REPO_NAME: tsg-os-images-testing + PULP3_FILE_DIST_NAME: tsg-os-images-testing + DALIY_BUILD_VERSION: 1 + only: + - /^rel-.*$/i + testing_build_9000: stage: build extends: .build_tsg-buildimage @@ -72,6 +120,30 @@ testing_build_9000: only: - /^rel-.*$/i +rc_build_7400_mcn0: + stage: build + extends: .build_tsg-buildimage + variables: + PROFILE_LIST: 7400MCN0P01R01 + UPLOAD_TO_FILE_REPO: 1 + DALIY_BUILD_VERSION: 0 + PULP3_FILE_REPO_NAME: tsg-os-images-rc + PULP3_FILE_DIST_NAME: tsg-os-images-rc + only: + - /^.*-rc.*$/i + +rc_build_7400_mcn123: + stage: build + extends: .build_tsg-buildimage + variables: + PROFILE_LIST: 7400MCN123P01R01 + UPLOAD_TO_FILE_REPO: 1 + DALIY_BUILD_VERSION: 0 + PULP3_FILE_REPO_NAME: tsg-os-images-rc + PULP3_FILE_DIST_NAME: tsg-os-images-rc + only: + - /^.*-rc.*$/i + rc_build_9000: stage: build extends: .build_tsg-buildimage @@ -84,6 +156,34 @@ rc_build_9000: only: - /^.*-rc.*$/i +release_build_7400_mcn0: + stage: build + extends: .build_tsg-buildimage + variables: + PROFILE_LIST: 7400MCN0P01R01 + UPLOAD_TO_FILE_REPO: 1 + DALIY_BUILD_VERSION: 0 + PULP3_FILE_REPO_NAME: tsg-os-images-release + PULP3_FILE_DIST_NAME: tsg-os-images-release + only: + - tags + except: + - /^.*-rc.*$/i + +release_build_7400_mcn123: + stage: build + extends: .build_tsg-buildimage + variables: + PROFILE_LIST: 7400MCN123P01R01 + UPLOAD_TO_FILE_REPO: 1 + DALIY_BUILD_VERSION: 0 + PULP3_FILE_REPO_NAME: tsg-os-images-release + PULP3_FILE_DIST_NAME: tsg-os-images-release + only: + - tags + except: + - /^.*-rc.*$/i + release_build_9000: stage: build extends: .build_tsg-buildimage