From 713da83ef184475a322cf8b664a3fffa87c580d6 Mon Sep 17 00:00:00 2001 From: Leonard Gram Date: Wed, 16 Jun 2021 11:17:08 +0200 Subject: [PATCH] CI: try to force v7.5.x instead of master (#35799) --- .drone.yml | 12 ++++++------ scripts/lib.star | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.drone.yml b/.drone.yml index 92c5f05027c..9dc5c9871d8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1110,7 +1110,7 @@ steps: - yarn install --frozen-lockfile --no-progress environment: DOCKERIZE_VERSION: 0.6.1 - DRONE_TARGET_BRANCH: main + DRONE_TARGET_BRANCH: v7.5.x depends_on: - clone @@ -1494,7 +1494,7 @@ steps: - cp C:\App\grabpl.exe grabpl.exe - .\grabpl.exe verify-drone environment: - DRONE_TARGET_BRANCH: main + DRONE_TARGET_BRANCH: v7.5.x depends_on: - clone @@ -2021,7 +2021,7 @@ steps: - yarn install --frozen-lockfile --no-progress environment: DOCKERIZE_VERSION: 0.6.1 - DRONE_TARGET_BRANCH: main + DRONE_TARGET_BRANCH: v7.5.x depends_on: - clone @@ -2399,7 +2399,7 @@ steps: - cp C:\App\grabpl.exe grabpl.exe - .\grabpl.exe verify-drone environment: - DRONE_TARGET_BRANCH: main + DRONE_TARGET_BRANCH: v7.5.x depends_on: - clone @@ -2896,7 +2896,7 @@ steps: - yarn install --frozen-lockfile --no-progress environment: DOCKERIZE_VERSION: 0.6.1 - DRONE_TARGET_BRANCH: main + DRONE_TARGET_BRANCH: v7.5.x depends_on: - clone @@ -3278,7 +3278,7 @@ steps: - cp C:\App\grabpl.exe grabpl.exe - .\grabpl.exe verify-drone environment: - DRONE_TARGET_BRANCH: main + DRONE_TARGET_BRANCH: v7.5.x depends_on: - clone diff --git a/scripts/lib.star b/scripts/lib.star index 50b904f56be..d4350e978b4 100644 --- a/scripts/lib.star +++ b/scripts/lib.star @@ -152,7 +152,7 @@ def init_steps(edition, platform, ver_mode, is_downstream=False, install_deps=Tr 'image': build_image, 'environment': { 'DOCKERIZE_VERSION': dockerize_version, - 'DRONE_TARGET_BRANCH':'main', + 'DRONE_TARGET_BRANCH':'v7.5.x', }, 'depends_on': [ 'clone', @@ -1033,7 +1033,7 @@ def get_windows_steps(edition, ver_mode, is_downstream=False): }, 'commands': download_grabpl_cmds + clone_cmds, }) - steps[1]['environment']['DRONE_TARGET_BRANCH'] = 'main' + steps[1]['environment']['DRONE_TARGET_BRANCH'] = 'v7.5.x' steps[1]['depends_on'] = [ 'clone', ]