Skip to content

Commit e9a2cbc

Browse files
authored
build: remove redundant exclusion of Gradle task signMavenJavaPublication (#1568)
1 parent 45c74fb commit e9a2cbc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/gradle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
java-version: 8
2323
cache: 'gradle'
2424
- name: Build with Gradle
25-
run: ./gradlew clean build -x signMavenJavaPublication -x test -x checkstyleTest
25+
run: ./gradlew clean build -x test -x checkstyleTest

azure-pipelines.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
jdkArchitectureOption: 'x64'
4343
publishJUnitResults: true
4444
tasks: 'build'
45-
options: 'uiAutomationTest -x checkstyleTest -x test -x signMavenJavaPublication'
45+
options: 'uiAutomationTest -x checkstyleTest -x test'
4646
- job: iOS_E2E_Tests
4747
# timeoutInMinutes: '90'
4848
steps:
@@ -60,4 +60,4 @@ jobs:
6060
jdkArchitectureOption: 'x64'
6161
publishJUnitResults: true
6262
tasks: 'build'
63-
options: 'xcuiTest -x checkstyleTest -x test -x signMavenJavaPublication'
63+
options: 'xcuiTest -x checkstyleTest -x test'

0 commit comments

Comments
 (0)