From b3f0de0685f45ca66b6281950876b3dfe2fbd12d Mon Sep 17 00:00:00 2001 From: Matthew Pickering Date: Thu, 7 Apr 2022 12:04:17 +0100 Subject: ci: Replace "always" with "on_success" to stop build jobs running before hadrian-ghci has finished See https://docs.gitlab.com/ee/ci/yaml/#when * always means, always run not matter what * on_success means, run if the dependencies have built successfully --- .gitlab/gen_ci.hs | 6 +-- .gitlab/jobs.yaml | 122 +++++++++++++++++++++++++++--------------------------- 2 files changed, 64 insertions(+), 64 deletions(-) diff --git a/.gitlab/gen_ci.hs b/.gitlab/gen_ci.hs index 9be71acef7..870cc95141 100755 --- a/.gitlab/gen_ci.hs +++ b/.gitlab/gen_ci.hs @@ -410,11 +410,11 @@ data OnOffRules = OnOffRules { rule_set :: Set Rule -- ^ The set of enabled rule -- The initial set of rules where all rules are disabled and the job is always run. emptyRules :: OnOffRules -emptyRules = OnOffRules S.empty Always +emptyRules = OnOffRules S.empty OnSuccess -- When to run the job data ManualFlag = Manual -- ^ Only run the job when explicitly triggered by a user - | Always -- ^ Always run it, if the rules pass (the default) + | OnSuccess -- ^ Always run it, if the rules pass (the default) deriving Eq enableRule :: Rule -> OnOffRules -> OnOffRules @@ -439,7 +439,7 @@ data OnOff = On | Off instance ToJSON ManualFlag where toJSON Manual = "manual" - toJSON Always = "always" + toJSON OnSuccess = "on_success" instance ToJSON OnOffRules where toJSON rules = toJSON [(object ([ diff --git a/.gitlab/jobs.yaml b/.gitlab/jobs.yaml index a43dcd42f6..c3dd89ce59 100644 --- a/.gitlab/jobs.yaml +++ b/.gitlab/jobs.yaml @@ -35,7 +35,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -96,7 +96,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -153,7 +153,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"disabled\" != \"disabled\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -210,7 +210,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -267,7 +267,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -329,7 +329,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -387,7 +387,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -445,7 +445,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -503,7 +503,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -567,7 +567,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -627,7 +627,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -688,7 +688,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -749,7 +749,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -807,7 +807,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -865,7 +865,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -923,7 +923,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -982,7 +982,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1040,7 +1040,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1098,7 +1098,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1156,7 +1156,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1214,7 +1214,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1274,7 +1274,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1332,7 +1332,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1392,7 +1392,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1452,7 +1452,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1506,7 +1506,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1564,7 +1564,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1626,7 +1626,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1689,7 +1689,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1748,7 +1748,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1807,7 +1807,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1866,7 +1866,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1931,7 +1931,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -1992,7 +1992,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2054,7 +2054,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2116,7 +2116,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2175,7 +2175,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2234,7 +2234,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2293,7 +2293,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2352,7 +2352,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2413,7 +2413,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2474,7 +2474,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2529,7 +2529,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2588,7 +2588,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB == \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2651,7 +2651,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2714,7 +2714,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && ($CI_MERGE_REQUEST_LABELS =~ /.*FreeBSD.*/) && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2773,7 +2773,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"disabled\" != \"disabled\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2833,7 +2833,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2893,7 +2893,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"disabled\" != \"disabled\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -2950,7 +2950,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3065,7 +3065,7 @@ "rules": [ { "if": "(\"true\" == \"true\") && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3123,7 +3123,7 @@ "rules": [ { "if": "(\"true\" == \"true\") && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3180,7 +3180,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"disabled\" != \"disabled\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3237,7 +3237,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3294,7 +3294,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && ($CI_MERGE_REQUEST_LABELS =~ /.*LLVM backend.*/) && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3411,7 +3411,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"disabled\" != \"disabled\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3468,7 +3468,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3527,7 +3527,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"disabled\" != \"disabled\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3586,7 +3586,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"disabled\" != \"disabled\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3639,7 +3639,7 @@ "rules": [ { "if": "($CI_MERGE_REQUEST_LABELS !~ /.*fast-ci.*/) && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"disabled\" != \"disabled\")", - "when": "always" + "when": "on_success" } ], "script": [ @@ -3696,7 +3696,7 @@ "rules": [ { "if": "(\"true\" == \"true\") && ($RELEASE_JOB != \"yes\") && ($NIGHTLY == null) && (\"true\" == \"true\") && (\"true\" == \"true\") && (\"true\" == \"true\")", - "when": "always" + "when": "on_success" } ], "script": [ -- cgit v1.2.1