From 973964087d6e6783b47809d561f2ad20cb38a262 Mon Sep 17 00:00:00 2001 From: Martin Nowak Date: Sat, 7 Apr 2018 21:45:36 +0200 Subject: [PATCH 1/3] Revert "Merge pull request #196 from wilzbach/exclude-more" This reverts commit 0f2210090af111516642f472fbfb03f5064e29e2, reversing changes made to a36fb9ee1ca5949d3b4a43b4ed02e2defdf83a9b. --- vars/runPipeline.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vars/runPipeline.groovy b/vars/runPipeline.groovy index 0844b6a4..6eaf1eb1 100644 --- a/vars/runPipeline.groovy +++ b/vars/runPipeline.groovy @@ -446,7 +446,7 @@ def call() { timeout(time: 1, unit: 'HOURS') { "atilaneves/automem", "dlang/undeaD", "economicmodeling/containers", - //"ikod/dlang-requests", + "ikod/dlang-requests", "kyllingstad/zmqd", "lgvz/imageformats", "msgpack/msgpack-d", @@ -475,7 +475,7 @@ def call() { timeout(time: 1, unit: 'HOURS') { // temporarily disabled - see https://github.com/BlackEdder/ggplotd/pull/45 //"BlackEdder/ggplotd", // 1m56s "higgsjs/Higgs", // 3m10s - //"dlang/dub", // 3m55s + "dlang/dub", // 3m55s "sociomantic-tsunami/ocean", // 4m49s //"vibe-d/vibe.d+libasync-base", // 3m45s //"vibe-d/vibe.d+vibe-core-base", // 4m31s From 2c738628693f7a0648a458c8ff270b0608bb6816 Mon Sep 17 00:00:00 2001 From: Martin Nowak Date: Sat, 7 Apr 2018 21:45:57 +0200 Subject: [PATCH 2/3] Revert "Merge pull request #191 from wilzbach/dependency-tree" This reverts commit a36fb9ee1ca5949d3b4a43b4ed02e2defdf83a9b, reversing changes made to 150600b3c3a6fe9e327e9af6b3d135149bdc7651. --- vars/runPipeline.groovy | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/vars/runPipeline.groovy b/vars/runPipeline.groovy index 6eaf1eb1..37d3774a 100644 --- a/vars/runPipeline.groovy +++ b/vars/runPipeline.groovy @@ -429,7 +429,6 @@ def call() { timeout(time: 1, unit: 'HOURS') { retryOnPreemption({ buildDlang(); }); - // some projects are disabled due to https://github.com/dlang/ci/issues/190 def dub_projects = [ // run in under 10s, sorted alphabetically "Abscissa/libInputVisitor", @@ -437,7 +436,7 @@ def call() { timeout(time: 1, unit: 'HOURS') { "DerelictOrg/DerelictGL3", "DerelictOrg/DerelictGLFW3", "DerelictOrg/DerelictSDL2", - //"dlang-bots/dlang-bot", + "dlang-bots/dlang-bot", "kaleidicassociates/excel-d", "DlangScience/scid", "Netflix/vectorflow", @@ -458,7 +457,7 @@ def call() { timeout(time: 1, unit: 'HOURS') { // sorted by test time fast to slow (to minimize pending queue length) "dlang-community/dfmt", // 11s "BBasile/iz", // 12s - //"dlang-community/libdparse", // 13s + "dlang-community/libdparse", // 13s "libmir/mir-random", // 13s "dlang-community/D-YAML", // 15s "libmir/mir-algorithm", // 17s @@ -467,9 +466,9 @@ def call() { timeout(time: 1, unit: 'HOURS') { "d-gamedev-team/gfm", // 28s "atilaneves/unit-threaded", //36s "dlang/tools", // 40s - //"rejectedsoftware/diet-ng", // 56s + "rejectedsoftware/diet-ng", // 56s "d-widget-toolkit/dwt", // 1m16s - //"dlang-tour/core", // 1m17s + "dlang-tour/core", // 1m17s "dlang-community/D-Scanner", // 1m40s "eBay/tsv-utils-dlang", // 1m41s // temporarily disabled - see https://github.com/BlackEdder/ggplotd/pull/45 @@ -477,13 +476,13 @@ def call() { timeout(time: 1, unit: 'HOURS') { "higgsjs/Higgs", // 3m10s "dlang/dub", // 3m55s "sociomantic-tsunami/ocean", // 4m49s - //"vibe-d/vibe.d+libasync-base", // 3m45s - //"vibe-d/vibe.d+vibe-core-base", // 4m31s - //"vibe-d/vibe.d+libevent-base", // 4m20s - //"vibe-d/vibe.d+vibe-core-tests", // 6m44s - //"vibe-d/vibe.d+libevent-tests", // 8m35s - //"vibe-d/vibe.d+vibe-core-examples", // 9m51s - //"vibe-d/vibe.d+libevent-examples", // 12m1s + "vibe-d/vibe.d+libasync-base", // 3m45s + "vibe-d/vibe.d+vibe-core-base", // 4m31s + "vibe-d/vibe.d+libevent-base", // 4m20s + "vibe-d/vibe.d+vibe-core-tests", // 6m44s + "vibe-d/vibe.d+libevent-tests", // 8m35s + "vibe-d/vibe.d+vibe-core-examples", // 9m51s + "vibe-d/vibe.d+libevent-examples", // 12m1s ] stage ('Test Projects') { From 004c4156341e24bd8ddcd270be50c8b81b4df0a9 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Mon, 7 May 2018 15:37:38 +0200 Subject: [PATCH 3/3] Remove currently failing projects + re-enable ggplotd --- vars/runPipeline.groovy | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/vars/runPipeline.groovy b/vars/runPipeline.groovy index 37d3774a..3ebd4a81 100644 --- a/vars/runPipeline.groovy +++ b/vars/runPipeline.groovy @@ -457,7 +457,8 @@ def call() { timeout(time: 1, unit: 'HOURS') { // sorted by test time fast to slow (to minimize pending queue length) "dlang-community/dfmt", // 11s "BBasile/iz", // 12s - "dlang-community/libdparse", // 13s + // see https://github.com/dlang/ci/pull/205 + //"dlang-community/libdparse", // 13s "libmir/mir-random", // 13s "dlang-community/D-YAML", // 15s "libmir/mir-algorithm", // 17s @@ -466,22 +467,21 @@ def call() { timeout(time: 1, unit: 'HOURS') { "d-gamedev-team/gfm", // 28s "atilaneves/unit-threaded", //36s "dlang/tools", // 40s - "rejectedsoftware/diet-ng", // 56s + //"rejectedsoftware/diet-ng", // 56s "d-widget-toolkit/dwt", // 1m16s "dlang-tour/core", // 1m17s "dlang-community/D-Scanner", // 1m40s "eBay/tsv-utils-dlang", // 1m41s - // temporarily disabled - see https://github.com/BlackEdder/ggplotd/pull/45 - //"BlackEdder/ggplotd", // 1m56s + "BlackEdder/ggplotd", // 1m56s "higgsjs/Higgs", // 3m10s - "dlang/dub", // 3m55s + //"dlang/dub", // 3m55s "sociomantic-tsunami/ocean", // 4m49s "vibe-d/vibe.d+libasync-base", // 3m45s - "vibe-d/vibe.d+vibe-core-base", // 4m31s + //"vibe-d/vibe.d+vibe-core-base", // 4m31s "vibe-d/vibe.d+libevent-base", // 4m20s - "vibe-d/vibe.d+vibe-core-tests", // 6m44s + //"vibe-d/vibe.d+vibe-core-tests", // 6m44s "vibe-d/vibe.d+libevent-tests", // 8m35s - "vibe-d/vibe.d+vibe-core-examples", // 9m51s + //"vibe-d/vibe.d+vibe-core-examples", // 9m51s "vibe-d/vibe.d+libevent-examples", // 12m1s ]