Commit 409e0ff6 authored by Takuto Ikuta's avatar Takuto Ikuta Committed by Commit Bot

[swarming] use var for luci-go CIPD package version

This is to simplify DEPS and enforce to use the same revision for each luci-go
client.

Change-Id: Ibb642840e09fe83f8736dbf86ab73f00154b0843
Reviewed-on: https://chromium-review.googlesource.com/c/1364998Reviewed-by: default avatarMarc-Antoine Ruel <maruel@chromium.org>
Commit-Queue: Takuto Ikuta <tikuta@chromium.org>
Cr-Commit-Position: refs/heads/master@{#614349}
parent 9b3c0270
......@@ -96,6 +96,9 @@ vars = {
# ANGLE's deps are relative to the angle_root variable.
'angle_root': 'src/third_party/angle',
# luci-go CIPD package version.
'luci_go': 'git_revision:fdf05508e8a66c773a41521e0243c9d11b9a2a1c',
'android_git': 'https://android.googlesource.com',
'aomedia_git': 'https://aomedia.googlesource.com',
'boringssl_git': 'https://boringssl.googlesource.com',
......@@ -404,15 +407,15 @@ deps = {
'packages': [
{
'package': 'infra/tools/luci/isolate/${{platform}}',
'version': 'git_revision:fdf05508e8a66c773a41521e0243c9d11b9a2a1c',
'version': Var('luci_go'),
},
{
'package': 'infra/tools/luci/isolated/${{platform}}',
'version': 'git_revision:fdf05508e8a66c773a41521e0243c9d11b9a2a1c',
'version': Var('luci_go'),
},
{
'package': 'infra/tools/luci/swarming/${{platform}}',
'version': 'git_revision:fdf05508e8a66c773a41521e0243c9d11b9a2a1c',
'version': Var('luci_go'),
},
],
'dep_type': 'cipd',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment