From b319349222d91a60f0e95ec91d8baac3655a9d49 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 20 Sep 2018 16:23:21 +0200 Subject: [PATCH] Replicate the buildbot linux-dev job --- decision-task.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/decision-task.py b/decision-task.py index 2645092a012..c794933e96f 100644 --- a/decision-task.py +++ b/decision-task.py @@ -54,15 +54,18 @@ def main(): decision.create_task_with_in_tree_dockerfile( task_name="Linux x86_64: tidy + dev build + unit tests", script=""" - #./mach test-tidy --no-progress --all + ./mach test-tidy --no-progress --all ./mach build --dev - #./mach test-unit - #./mach test-tidy --no-progress --self-test + ./mach test-unit + ./mach package --dev + ./mach test-tidy --no-progress --self-test + ./etc/memory_reports_over_time.py --test + ./etc/ci/lockfile_changed.sh + ./etc/ci/check_no_panic.sh """, **build_kwargs ) - def dockerfile(name): return os.path.join(os.path.dirname(__file__), name + ".dockerfile")