Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
dfe6a96
Updates to build with java21
Oct 15, 2025
c84fa08
CI updates for Java 21
reder9 Oct 15, 2025
e825c75
Additional CI updates
reder9 Oct 15, 2025
4e9e920
Additional CI fixes
reder9 Oct 15, 2025
afe05dd
Additional CI fixes
reder9 Oct 15, 2025
5f56c70
Extra fixes
reder9 Oct 15, 2025
f57fd0f
Extra fixes
reder9 Oct 15, 2025
03aa0b7
Additional testing changes
reder9 Oct 15, 2025
30c30e1
Adding updates to allow us to set custom workspaces
reder9 Oct 15, 2025
7843831
Merge branch 'master' of github-reder9:code42/pipelinekt into creder/…
reder9 Oct 15, 2025
6a8c95a
Additional updates
reder9 Oct 15, 2025
f12334f
Additional updates
reder9 Oct 16, 2025
aabfe83
Merge: Resolved conflicts after multibranch workspace changes
reder9 Oct 16, 2025
fa613d1
Git cruft fix
reder9 Oct 16, 2025
c049b68
Custom workspace improvements
reder9 Oct 17, 2025
60cec40
Merge branch 'master' into creder/allowing_for_multibranch_custom_wor…
reder9 Oct 17, 2025
296cd27
Resolve merge conflicts - keep multibranch workspace implementation
reder9 Oct 17, 2025
63b7f2b
Merge branch 'creder/allowing_for_multibranch_custom_workspaces' of g…
reder9 Oct 17, 2025
4686e02
Fix: Remove remaining merge conflict markers
reder9 Oct 17, 2025
bceca9b
Merge branch 'master' of github-reder9:code42/pipelinekt into creder/…
reder9 Oct 17, 2025
da78e9a
Version increment
reder9 Oct 17, 2025
af98b2f
Fixing workspace path
reder9 Oct 17, 2025
26903e2
Version rev
reder9 Oct 17, 2025
aeb7a15
Merge branch 'master' into creder/allowing_for_multibranch_custom_wor…
reder9 Oct 17, 2025
ad8e7f4
Making this backwards compatible
reder9 Oct 17, 2025
0029f36
Merge branch 'creder/allowing_for_multibranch_custom_workspaces' of g…
reder9 Oct 17, 2025
623ce96
Fixing merge conflicts
reder9 Oct 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ data class PipelineDsl(
}

fun pipeline(
prepSteps: DslContext<Step>.() -> Unit = { },
pipelineBlock: PipelineContext.() -> Unit,
customWorkspace: String? = null,
useMultibranchWorkspace: Boolean = true,
prepSteps: DslContext<Step>.() -> Unit = { },
pipelineBlock: PipelineContext.() -> Unit,
): Pipeline {
val context = PipelineContext(
topLevelStageContext = topLevelStageWrapperContext(),
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.21.10
0.21.11
Loading