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

Enable a non-gated gczeal builder #373

Merged
merged 2 commits into from May 14, 2016
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

Remove build_linux_headless

servo/servo#8641 made headless go away, so we don't
need a separate environment for it any more.
  • Loading branch information
edunham authored and larsbergstrom committed May 14, 2016
commit f995a77e6884ddce8d4e115f4b70a1ffd3f81208
@@ -59,10 +59,6 @@ def __add__(self, other):
'SHELL': '/bin/bash',
})

build_linux_headless = build_linux + Environment({
'SERVO_HEADLESS': '1',
})

build_android = build_linux + Environment({
'ANDROID_NDK': '{{ common.servo_home }}/android/ndk/current/',
'ANDROID_SDK': '{{ common.servo_home }}/android/sdk/current/',
@@ -135,8 +135,8 @@ class DynamicServoBuilder(util.BuilderConfig):


c['builders'] = [
DynamicServoBuilder("linux-dev", LINUX_SLAVES, envs.build_linux_headless),
DynamicServoBuilder("linux-rel", LINUX_SLAVES, envs.build_linux_headless),
DynamicServoBuilder("linux-dev", LINUX_SLAVES, envs.build_linux),
DynamicServoBuilder("linux-rel", LINUX_SLAVES, envs.build_linux),
DynamicServoBuilder("android", CROSS_SLAVES, envs.build_android),
DynamicServoBuilder("arm32", CROSS_SLAVES, envs.build_arm32),
DynamicServoBuilder("arm64", CROSS_SLAVES, envs.build_arm64),
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.