-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dynamic DSL plugins handling in job DSL
This commit fixes working with dynamic DSL plugins in job DSL integration code, namely in promotion actions processing.
- Loading branch information
Denis Tikhomirov
committed
Apr 14, 2022
1 parent
99d2978
commit 40429e0
Showing
3 changed files
with
40 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
freeStyleJob('dynamic-dsl-test') { | ||
properties { | ||
promotions { | ||
promotion { | ||
name('Development') | ||
conditions { | ||
manual('tester') | ||
} | ||
actions { | ||
jobDsl { | ||
scriptText('println test') | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |