mirror of
https://github.com/servo/servo.git
synced 2025-07-28 01:30:32 +01:00
Tascluster: shorten x86_64 to x64
This commit is contained in:
parent
652ff71482
commit
2d12d50b54
1 changed files with 8 additions and 8 deletions
|
@ -58,7 +58,7 @@ windows_sparse_checkout = [
|
||||||
|
|
||||||
|
|
||||||
def linux_tidy_unit():
|
def linux_tidy_unit():
|
||||||
return linux_build_task("Linux x86_64: tidy + dev build + unit tests").with_script("""
|
return linux_build_task("Linux x64: tidy + dev build + unit tests").with_script("""
|
||||||
./mach test-tidy --no-progress --all
|
./mach test-tidy --no-progress --all
|
||||||
./mach build --dev
|
./mach build --dev
|
||||||
./mach test-unit
|
./mach test-unit
|
||||||
|
@ -72,7 +72,7 @@ def linux_tidy_unit():
|
||||||
|
|
||||||
|
|
||||||
def with_rust_nightly():
|
def with_rust_nightly():
|
||||||
return linux_build_task("Linux x86_64: with Rust Nightly").with_script("""
|
return linux_build_task("Linux x64: with Rust Nightly").with_script("""
|
||||||
echo "nightly" > rust-toolchain
|
echo "nightly" > rust-toolchain
|
||||||
./mach build --dev
|
./mach build --dev
|
||||||
./mach test-unit
|
./mach test-unit
|
||||||
|
@ -82,7 +82,7 @@ def with_rust_nightly():
|
||||||
def android_arm32():
|
def android_arm32():
|
||||||
return (
|
return (
|
||||||
linux_build_task("Android ARMv7: build")
|
linux_build_task("Android ARMv7: build")
|
||||||
# file: NDK parses $(file $SHELL) to tell x86_64 from x86
|
# file: NDK parses $(file $SHELL) to tell x64 host from x86
|
||||||
# wget: servo-media-gstreamer’s build script
|
# wget: servo-media-gstreamer’s build script
|
||||||
.with_script("""
|
.with_script("""
|
||||||
apt-get install -y --no-install-recommends openjdk-8-jdk-headless file wget
|
apt-get install -y --no-install-recommends openjdk-8-jdk-headless file wget
|
||||||
|
@ -99,7 +99,7 @@ def android_arm32():
|
||||||
|
|
||||||
def windows_dev():
|
def windows_dev():
|
||||||
return (
|
return (
|
||||||
windows_build_task("Windows x86_64: dev build + unit tests")
|
windows_build_task("Windows x64: dev build + unit tests")
|
||||||
.with_script(
|
.with_script(
|
||||||
# Not necessary as this would be done at the start of `build`,
|
# Not necessary as this would be done at the start of `build`,
|
||||||
# but this allows timing it separately.
|
# but this allows timing it separately.
|
||||||
|
@ -117,7 +117,7 @@ def windows_dev():
|
||||||
|
|
||||||
def windows_release():
|
def windows_release():
|
||||||
return (
|
return (
|
||||||
windows_build_task("Windows x86_64: release build")
|
windows_build_task("Windows x64: release build")
|
||||||
.with_script("mach build --release",
|
.with_script("mach build --release",
|
||||||
"mach package --release")
|
"mach package --release")
|
||||||
.with_artifacts("repo/target/release/msi/Servo.exe",
|
.with_artifacts("repo/target/release/msi/Servo.exe",
|
||||||
|
@ -136,7 +136,7 @@ def linux_wpt():
|
||||||
|
|
||||||
def linux_release_build():
|
def linux_release_build():
|
||||||
return (
|
return (
|
||||||
linux_build_task("Linux x86_64: release build")
|
linux_build_task("Linux x64: release build")
|
||||||
.with_script("""
|
.with_script("""
|
||||||
./mach build --release --with-debug-assertions -p servo
|
./mach build --release --with-debug-assertions -p servo
|
||||||
./etc/ci/lockfile_changed.sh
|
./etc/ci/lockfile_changed.sh
|
||||||
|
@ -146,12 +146,12 @@ def linux_release_build():
|
||||||
target/release/build/osmesa-src-*/out/lib/gallium
|
target/release/build/osmesa-src-*/out/lib/gallium
|
||||||
""")
|
""")
|
||||||
.with_artifacts("/target.tar.gz")
|
.with_artifacts("/target.tar.gz")
|
||||||
.find_or_create("build.linux_x86-64_release." + CONFIG.git_sha)
|
.find_or_create("build.linux_x64_release." + CONFIG.git_sha)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def wpt_chunk(release_build_task, total_chunks, this_chunk, extra):
|
def wpt_chunk(release_build_task, total_chunks, this_chunk, extra):
|
||||||
name = "Linux x86_64: WPT chunk %s / %s" % (this_chunk, total_chunks)
|
name = "Linux x64: WPT chunk %s / %s" % (this_chunk, total_chunks)
|
||||||
script = """
|
script = """
|
||||||
./mach test-wpt \
|
./mach test-wpt \
|
||||||
--release \
|
--release \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue