Skip to content

Commit 67f09f3

Browse files
committed
Fix indentation in workflow files and resolve leftover conflicts
1 parent 8493218 commit 67f09f3

2 files changed

Lines changed: 14 additions & 18 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
- run: java -version
217217
- name: Install Maven modules to local Maven repository
218218
run: |
219-
mvn install -B -ntp -T 1C -PquickBuild -DskipTests
219+
mvn install -B -ntp -T 1C -PquickBuild -DskipTests
220220
- run: java -version
221221
- run: mvn -B -ntp enforcer:enforce@enforce -T 1C
222222
gapic-libraries-bom:
@@ -230,7 +230,7 @@ mvn install -B -ntp -T 1C -PquickBuild -DskipTests
230230
cache: maven
231231
- name: Install Maven modules to local Maven repository
232232
run: |
233-
mvn install -B -ntp -T 1C -PquickBuild -DskipTests
233+
mvn install -B -ntp -T 1C -PquickBuild -DskipTests
234234
- name: Validate gapic-libraries-bom
235235
uses: googleapis/java-cloud-bom/tests/validate-bom@v26.54.0
236236
with:

.github/workflows/sdk-platform-java-ci.yaml

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
- run: java -version
3535
- name: Unit Tests
3636
run: |
37-
mvn test --batch-mode --no-transfer-progress -PquickBuild \
37+
mvn test --batch-mode --no-transfer-progress -PquickBuild \
3838
-DenableTestCoverage
3939
working-directory: sdk-platform-java
4040
# The `envVarTest` profile runs tests that require an environment variable
4141
- name: Env Var Tests
4242
run: |
43-
mvn test --batch-mode --no-transfer-progress -PquickBuild \
43+
mvn test --batch-mode --no-transfer-progress -PquickBuild \
4444
-DenableTestCoverage -PenvVarTest
4545
# Set the Env Var for this step only
4646
env:
@@ -51,7 +51,7 @@ mvn test --batch-mode --no-transfer-progress -PquickBuild \
5151
- run: bazelisk version
5252
- name: Install Maven modules
5353
run: |
54-
mvn install -B -ntp -PquickBuild -DskipTests
54+
mvn install -B -ntp -PquickBuild -DskipTests
5555
working-directory: sdk-platform-java
5656
- name: Integration Tests
5757
run: |
@@ -90,13 +90,13 @@ mvn install -B -ntp -PquickBuild -DskipTests
9090
- run: java -version
9191
- name: Unit Tests
9292
run: |
93-
mvn test --batch-mode --no-transfer-progress -PquickBuild \
93+
mvn test --batch-mode --no-transfer-progress -PquickBuild \
9494
-DenableTestCoverage
9595
working-directory: sdk-platform-java
9696
# The `envVarTest` profile runs tests that require an environment variable
9797
- name: Env Var Tests
9898
run: |
99-
mvn test --batch-mode --no-transfer-progress -PquickBuild \
99+
mvn test --batch-mode --no-transfer-progress -PquickBuild \
100100
-DenableTestCoverage -PenvVarTest
101101
# Set the Env Var for this step only
102102
env:
@@ -107,11 +107,7 @@ mvn test --batch-mode --no-transfer-progress -PquickBuild \
107107
- run: bazelisk version
108108
- name: Install Maven modules
109109
run: |
110-
<<<<<<< Updated upstream
111-
mvn install -B -ntp -Pfast -DskipTests
112-
=======
113110
mvn install -B -ntp -PquickBuild -DskipTests
114-
>>>>>>> Stashed changes
115111
working-directory: sdk-platform-java
116112
- name: Integration Tests
117113
run: |
@@ -132,13 +128,13 @@ mvn test --batch-mode --no-transfer-progress -PquickBuild \
132128
- run: java -version
133129
- name: Unit Tests
134130
run: |
135-
mvn test --batch-mode --no-transfer-progress -PquickBuild \
131+
mvn test --batch-mode --no-transfer-progress -PquickBuild \
136132
-DenableTestCoverage
137133
working-directory: sdk-platform-java
138134
# The `envVarTest` profile runs tests that require an environment variable
139135
- name: Env Var Tests
140136
run: |
141-
mvn test --batch-mode --no-transfer-progress -PquickBuild \
137+
mvn test --batch-mode --no-transfer-progress -PquickBuild \
142138
-DenableTestCoverage -PenvVarTest
143139
# Set the Env Var for this step only
144140
env:
@@ -149,7 +145,7 @@ mvn test --batch-mode --no-transfer-progress -PquickBuild \
149145
- run: bazelisk version
150146
- name: Install Maven modules
151147
run: |
152-
mvn install -B -ntp -PquickBuild -DskipTests
148+
mvn install -B -ntp -PquickBuild -DskipTests
153149
working-directory: sdk-platform-java
154150
- name: Integration Tests
155151
# note need to set shouldInstallTestSecurityManager=false due to https://github.com/bazelbuild/bazel/issues/24354
@@ -194,7 +190,7 @@ mvn install -B -ntp -PquickBuild -DskipTests
194190
# Maven surefire plugin lets us to specify the JVM when running tests via
195191
# the "jvm" system property.
196192
export GOOGLE_CLOUD_UNIVERSE_DOMAIN=random.com
197-
mvn test --batch-mode --no-transfer-progress -PquickBuild \
193+
mvn test --batch-mode --no-transfer-progress -PquickBuild \
198194
-DenableTestCoverage -Dsurefire.failIfNoSpecifiedTests=false \
199195
-PenvVarTest
200196
# Set the Env Var for this step only
@@ -269,7 +265,7 @@ mvn test --batch-mode --no-transfer-progress -PquickBuild \
269265
- name: Install all modules using Java 11
270266
shell: bash
271267
run: |
272-
mvn install -B -ntp -PquickBuild -DskipTests
268+
mvn install -B -ntp -PquickBuild -DskipTests
273269
working-directory: sdk-platform-java
274270
- uses: actions/setup-java@v3
275271
with:
@@ -343,7 +339,7 @@ mvn install -B -ntp -PquickBuild -DskipTests
343339
- run: mvn -version
344340
- name: Install Maven modules
345341
run: |
346-
mvn install -B -ntp -PquickBuild -DskipTests
342+
mvn install -B -ntp -PquickBuild -DskipTests
347343
working-directory: sdk-platform-java
348344
- name: Showcase golden tests
349345
working-directory: sdk-platform-java/java-showcase
@@ -422,7 +418,7 @@ mvn install -B -ntp -PquickBuild -DskipTests
422418
cache: maven
423419
- name: Install Maven modules
424420
run: |
425-
mvn install -B -ntp -PquickBuild -DskipTests
421+
mvn install -B -ntp -PquickBuild -DskipTests
426422
working-directory: sdk-platform-java
427423
- name: Install showcase to local maven repository
428424
run: |

0 commit comments

Comments
 (0)