mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 20:04:20 +00:00
97786ba7cd
1. remove `--current-branch` as it shouldn't be used for crOS checkout as crOS can have ebuilds sync to commit not part of main 2. allow unshallow to fail as sometimes repo sync results in a deep checkout TEST=led get-builder luci.crosvm.ci:chromeos_hatch | led edit-cr-cl https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4015697 | led edit-recipe-bundle | led launch BUG=b:240692674 Change-Id: I10335c07dc5f907b7b8989b6af53a24c803844d6 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4015697 Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Dennis Kempin <denniskempin@google.com> Auto-Submit: Zihan Chen <zihanchen@google.com>
82 lines
2.3 KiB
Python
82 lines
2.3 KiB
Python
# Copyright 2022 The ChromiumOS Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
from recipe_engine.post_process import Filter
|
|
|
|
PYTHON_VERSION_COMPATIBILITY = "PY3"
|
|
|
|
DEPS = [
|
|
"crosvm",
|
|
"depot_tools/depot_tools",
|
|
"recipe_engine/buildbucket",
|
|
"recipe_engine/context",
|
|
"recipe_engine/properties",
|
|
"recipe_engine/step",
|
|
]
|
|
|
|
|
|
def RunSteps(api):
|
|
with api.crosvm.cros_container_build_context():
|
|
gitilies = api.buildbucket.build.input.gitiles_commit
|
|
upstream_url = "https://chromium.googlesource.com/crosvm/crosvm"
|
|
revision = gitilies.id or "upstream/main"
|
|
|
|
api.crosvm.step_in_container(
|
|
"Sync repo",
|
|
[
|
|
"repo",
|
|
"sync",
|
|
"-j8",
|
|
],
|
|
cros=True,
|
|
)
|
|
|
|
api.crosvm.step_in_container(
|
|
"Add crosvm upstream remote",
|
|
["git", "remote", "add", "upstream", upstream_url],
|
|
cros=True,
|
|
)
|
|
|
|
# Ignore errors from unshallow as repo sync sometimes resulted in full git history
|
|
api.crosvm.step_in_container(
|
|
"Unshallow crosvm", ["git", "fetch", "cros", "--unshallow"], cros=True, ok_ret="any"
|
|
)
|
|
|
|
api.crosvm.step_in_container("Print current git log", ["git", "log"], cros=True)
|
|
|
|
api.crosvm.step_in_container(
|
|
"Fetch upstream crosvm", ["git", "fetch", "upstream"], cros=True
|
|
)
|
|
|
|
# Apply unmerged commit from upstream to crOS tree
|
|
api.crosvm.step_in_container(
|
|
"Cherry-pick from upstream revision", ["git", "cherry-pick", ".." + revision], cros=True
|
|
)
|
|
|
|
api.crosvm.step_in_container(
|
|
"cros-workon-hatch crosvm",
|
|
["cros_sdk", "cros-workon-hatch", "start", "crosvm"],
|
|
cros=True,
|
|
)
|
|
|
|
api.crosvm.step_in_container(
|
|
"Build crosvm",
|
|
[
|
|
"cros_sdk",
|
|
"emerge-hatch",
|
|
"crosvm",
|
|
],
|
|
cros=True,
|
|
)
|
|
|
|
|
|
def GenTests(api):
|
|
filter_steps = Filter("Build crosvm")
|
|
yield (
|
|
api.test(
|
|
"build_chromeos_hatch",
|
|
api.buildbucket.ci_build(project="crosvm/crosvm"),
|
|
)
|
|
+ api.post_process(filter_steps)
|
|
)
|