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

Check if the lockfile changed #157

Merged
merged 1 commit into from Nov 5, 2015
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Check if the lockfile changed

  • Loading branch information
Manishearth committed Nov 5, 2015
commit 725a66cd8612747e0dc1e35e29a5f2f4668dc510
@@ -187,6 +187,7 @@ linux_dev_factory = create_servo_factory([
steps.ShellCommand(command=["./mach", "test-unit"], env=linux_headless_env),
steps.ShellCommand(command=["./mach", "test-ref", "--kind", "cpu"], env=linux_headless_env),
steps.Compile(command=["./mach", "build-cef"], env=linux_headless_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=linux_headless_env),
])

linux_rel_factory = create_servo_factory([
@@ -203,6 +204,7 @@ linux_rel_factory = create_servo_factory([
#steps.ShellCommand(command=["pkill", "-x", "servo"], decodeRC={0: SUCCESS, 1: SUCCESS}),
steps.ShellCommand(command=["gzip", "test-css.log"], env=linux_headless_env),
steps.Compile(command=["./mach", "build-cef", "--release"], env=linux_headless_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=linux_headless_env),
])

task_limited_test_env = dict({'RUST_TEST_TASKS': '1'}, **mac_test_env)
@@ -216,6 +218,7 @@ mac_rel_wpt_factory = create_servo_factory([
env=mac_test_env, logfiles={"test-wpt.log": "test-wpt.log"}),
steps.ShellCommand(command=["pkill", "-x", "servo"], decodeRC={0: SUCCESS, 1: SUCCESS}),
steps.ShellCommand(command=["gzip", "test-wpt.log"], env=mac_test_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=mac_test_env),
])

mac_dev_ref_unit_factory = create_servo_factory([
@@ -224,6 +227,7 @@ mac_dev_ref_unit_factory = create_servo_factory([
env=task_limited_test_env),
steps.ShellCommand(command=["./mach", "test-unit"], env=mac_test_env),
steps.Compile(command=["./mach", "build-cef"], env=mac_test_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=mac_test_env),
])

mac_rel_css_factory = create_servo_factory([
@@ -233,6 +237,7 @@ mac_rel_css_factory = create_servo_factory([
env=mac_test_env, logfiles={"test-css.log": "test-css.log"}),
steps.ShellCommand(command=["pkill", "-x", "servo"], decodeRC={0: SUCCESS, 1: SUCCESS}),
steps.ShellCommand(command=["gzip", "test-css.log"], env=mac_test_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=mac_test_env),
])

android_compile_env = dict({'ANDROID_SDK': '/home/servo/android-sdk-linux/',
@@ -242,6 +247,7 @@ android_compile_env = dict({'ANDROID_SDK': '/home/servo/android-sdk-linux/',
**linux_test_env)
android_factory = create_servo_factory([
steps.Compile(command=["./mach", "build", "--android", "--dev"], env=android_compile_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=android_compile_env),
])

android_nightly_factory = create_servo_factory([
@@ -261,6 +267,7 @@ gonk_compile_env = dict({'ANDROID_SDK': '/home/servo/android-sdk-linux/',

gonk_factory = create_servo_factory([
steps.Compile(command=["./mach", "build-gonk"], env=gonk_compile_env),
steps.ShellCommand(command=["bash", "./etc/ci/lockfile_changed.sh"], env=gonk_compile_env),
])

doc_factory = create_servo_factory([
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.