Skip to content
This repository was archived by the owner on Dec 16, 2024. It is now read-only.

Commit f6f9ee4

Browse files
author
edunham
committed
Remove build_linux_headless
servo/servo#8641 made headless go away, so we don't need a separate environment for it any more.
1 parent e45c8cb commit f6f9ee4

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

buildbot/master/files/config/environments.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ def __add__(self, other):
5959
'SHELL': '/bin/bash',
6060
})
6161

62-
build_linux_headless = build_linux + Environment({
63-
'SERVO_HEADLESS': '1',
64-
})
65-
6662
build_android = build_linux + Environment({
6763
'ANDROID_NDK': '{{ common.servo_home }}/android/ndk/current/',
6864
'ANDROID_SDK': '{{ common.servo_home }}/android/sdk/current/',

buildbot/master/files/config/master.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ class DynamicServoBuilder(util.BuilderConfig):
137137

138138

139139
c['builders'] = [
140-
DynamicServoBuilder("linux-dev", LINUX_SLAVES, envs.build_linux_headless),
141-
DynamicServoBuilder("linux-nogate", LINUX_SLAVES, envs.build_linux_headless),
142-
DynamicServoBuilder("linux-rel", LINUX_SLAVES, envs.build_linux_headless),
140+
DynamicServoBuilder("linux-dev", LINUX_SLAVES, envs.build_linux),
141+
DynamicServoBuilder("linux-nogate", LINUX_SLAVES, envs.build_linux),
142+
DynamicServoBuilder("linux-rel", LINUX_SLAVES, envs.build_linux),
143143
DynamicServoBuilder("android", CROSS_SLAVES, envs.build_android),
144144
DynamicServoBuilder("arm32", CROSS_SLAVES, envs.build_arm32),
145145
DynamicServoBuilder("arm64", CROSS_SLAVES, envs.build_arm64),

0 commit comments

Comments
 (0)