Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix nightly WPT sync job #23434

Merged
merged 2 commits into from May 22, 2019
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Next

Schedule a release build for WPT daily job if necessary.

  • Loading branch information
jdm committed May 21, 2019
commit 2406d0973a18ea151e098dc17829d76a79cb0d53
@@ -475,8 +475,7 @@ def macos_nightly():


def update_wpt():
# Reuse the release build that was made for landing the PR
build_task = decisionlib.Task.find("build.macos_x64_release." + CONFIG.git_sha)
build_task = macos_release_build()
update_task = (
macos_task("WPT update")
.with_python2()
@@ -504,8 +503,8 @@ def update_wpt():
)


def macos_wpt():
build_task = (
def macos_release_build():
return (
macos_build_task("Release build")
.with_treeherder("macOS x64", "Release")
.with_script("""
@@ -520,6 +519,10 @@ def macos_wpt():
.with_artifacts("repo/target.tar.gz")
.find_or_create("build.macos_x64_release." + CONFIG.git_sha)
)


def macos_wpt():
build_task = macos_release_build()
def macos_run_task(name):
task = macos_task(name).with_python2()
return (
@@ -771,6 +774,7 @@ def macos_build_task(name):
.with_repo()
.with_python2()
.with_rustup()
.with_index_and_artifacts_expire_in(build_artifacts_expire_in)
# Debugging for surprising generic-worker behaviour
.with_early_script("ls")
.with_script("ls target || true")
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.