project:
key: DSLT
name: DSLT
plans:
- key: BNT47
name: Build & Test
stages:
- name: Source Checkout
jobs:
- key: DIST
name: Source checkout and distribution
description: Create the full distribution tarball
enabled: false
tasks:
- !script
description: Create source tarballs
inlineScript:
interpreter: !scriptInterpreter LEGACY_SH_BAT
scriptBody: "echo A"
miscellaneous:
cleanWorkingDirectoryAfterEachBuild: true
Description
A job's enabled flag is not considered when plan consisting of the job des not exist.
For above example, when Plan BNT47 does not exist, and the seed task is run, the job DIST has enabled flag set to true. Job is disabled if the seed task is re-run.
Bug
Add On Verison
1.8.2
Sample Input
Description
A job's enabled flag is not considered when plan consisting of the job des not exist.
For above example, when Plan
BNT47
does not exist, and the seed task is run, the jobDIST
has enabled flag set to true. Job is disabled if the seed task is re-run.