CI: try to force v7.5.x instead of master (#35799)

This commit is contained in:
Leonard Gram
2021-06-16 11:17:08 +02:00
committed by GitHub
parent 300344dc15
commit 713da83ef1
2 changed files with 8 additions and 8 deletions
+6 -6
View File
@@ -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
+2 -2
View File
@@ -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',
]