Skip to content
This repository has been archived by the owner on Nov 21, 2018. It is now read-only.

Clean up dev lists and add debug builder #33

Merged
merged 1 commit into from
Oct 12, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 16 additions & 9 deletions master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ auto_platforms_prod = [
"linux-64-opt",
#"linux-64-nopt-c",
"linux-64-nopt-t",
"linux-64-debug-opt",

#"linux-64-opt-vg",
#"linux-all-opt",
Expand Down Expand Up @@ -157,6 +158,7 @@ auto_platforms_dev = [
"linux-32-nopt-t",
"linux-64-opt",
"linux-64-nopt-t",
"linux-64-debug-opt",

"linux-64-x-android-t",

Expand All @@ -167,18 +169,16 @@ auto_platforms_dev = [
"win-msvc-32-opt",
"win-msvc-64-opt",

"bitrig-64-opt",
#"bitrig-64-opt",
"linux-musl-64-opt",
"freebsd10_32-1",
"freebsd10_64-1",
"dragonflybsd-64-opt",
"openbsd-64-opt"
#"freebsd10_32-1",
#"freebsd10_64-1",
#"dragonflybsd-64-opt",
#"openbsd-64-opt"
]

try_platforms_dev = ["linux", "win-gnu-32", "win-gnu-64"]
snap_platforms_dev = ["linux", "win-gnu-32", "win-gnu-64", "bitrig-64",
"freebsd10_32-1", "freebsd10_64-1", "dragonflybsd-64-opt",
"openbsd-64-opt"]
snap_platforms_dev = ["linux", "win-gnu-32", "win-gnu-64"]
dist_platforms_dev = ["linux", "win-gnu-32", "win-gnu-64", "win-msvc-32", "win-msvc-64"]
cargo_platforms_dev = ["linux-32", "linux-64", "win-gnu-32", "win-gnu-64",
"bitrig-64", "win-msvc-32", "win-msvc-64"]
Expand All @@ -205,7 +205,8 @@ nogate_builders = [
"auto-freebsd10_32-1",
"auto-freebsd10_64-1",
"auto-dragonflybsd-64-opt",
"auto-openbsd-64-opt"
"auto-openbsd-64-opt",
"auto-linux-64-debug-opt"
]
dist_nogate_platforms = []

Expand Down Expand Up @@ -1477,8 +1478,13 @@ for p in try_platforms:
"win" in p, True)))

for p in auto_platforms:
# here we parse builder names and platform names into actions
opt_compiler = True
opt_tests = True
debug = False

if "-debug" in p:
debug = True

if "-nopt-c" in p:
opt_compiler = False
Expand Down Expand Up @@ -1529,6 +1535,7 @@ for p in auto_platforms:
"build": auto_platform_build(p),
"hosts": auto_platform_host(p),
"targets": auto_platform_target(p),
"debug": debug,
"check": chk},
factory=make_and_check_buildfactory(chk, android,
"win" in p, True)))
Expand Down