Skip to content

Commit 0e77243

Browse files
SONARPHP-1634 Change singing condition for release branches (#1381)
1 parent 9dd9765 commit 0e77243

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.cirrus/modules/build.star

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def build_test_analyze_task():
9494
"only_if": is_branch_qa_eligible(),
9595
"depends_on": "build",
9696
"env": build_test_env(),
97-
"eks_container": base_image_container_builder(cpu=2, memory="4G"),
97+
"eks_container": base_image_container_builder(cpu=2, memory="6G"),
9898
"gradle_cache": gradle_cache(),
9999
"gradle_wrapper_cache": gradle_wrapper_cache(),
100100
"build_script": build_script(),

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
with:
1717
publishToBinaries: true
1818
mavenCentralSync: true
19-
slackChannel: squad-cloud-notifs
19+
slackChannel: squad-security-cloud-notifs

build-logic/src/main/kotlin/org/sonarsource/php/BuildUtils.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fun enforceJarSize(
3838

3939
fun Project.signingCondition(): Boolean {
4040
val branch = System.getenv()["CIRRUS_BRANCH"] ?: ""
41-
return (branch == "master" || branch.matches("branch-[\\d.]+".toRegex())) &&
41+
return (branch == "master" || branch.matches("branch-.+".toRegex())) &&
4242
gradle.taskGraph.hasTask(":artifactoryPublish")
4343
}
4444

0 commit comments

Comments
 (0)