File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1068,27 +1068,27 @@ fun JobBuilder<*>.verifyCommandResult(
1068
1068
)
1069
1069
}
1070
1070
1071
- val Step .successCondition
1071
+ val Step < * > .successCondition
1072
1072
get() = """
1073
1073
always()
1074
1074
&& (${outcome.eq(Success )} )
1075
1075
""" .trimIndent()
1076
1076
1077
- val Step .successOnAlpineCondition
1077
+ val Step < * > .successOnAlpineCondition
1078
1078
get() = """
1079
1079
always()
1080
1080
&& (${outcome.eq(Success )} )
1081
1081
&& (matrix.distribution.user-id == 'Alpine')
1082
1082
""" .trimIndent()
1083
1083
1084
- val Step .successNotOnUbuntu2404Condition
1084
+ val Step < * > .successNotOnUbuntu2404Condition
1085
1085
get() = """
1086
1086
always()
1087
1087
&& (${outcome.eq(Success )} )
1088
1088
&& (matrix.distribution.user-id != 'Ubuntu-24.04')
1089
1089
""" .trimIndent()
1090
1090
1091
- fun Step.getSuccessNotOnDistributionCondition (i : Int , distribution : String ) = """
1091
+ fun Step < * > .getSuccessNotOnDistributionCondition (i : Int , distribution : String ) = """
1092
1092
always()
1093
1093
&& (${outcome.eq(Success )} )
1094
1094
&& (matrix.distributions.distribution$i .user-id != '$distribution ')
Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
@file:Repository(" https://repo.maven.apache.org/maven2/" )
18
- @file:DependsOn(" io.github.typesafegithub:github-workflows-kt:2.3 .0" )
18
+ @file:DependsOn(" io.github.typesafegithub:github-workflows-kt:3.0 .0" )
19
19
20
20
import io.github.typesafegithub.workflows.domain.Concurrency
21
21
import io.github.typesafegithub.workflows.domain.triggers.Trigger
You can’t perform that action at this time.
0 commit comments