We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a58c0 commit 169facaCopy full SHA for 169faca
.github/workflows/ci.yaml
@@ -108,6 +108,7 @@ jobs:
108
java-datastore: java-datastore/**
109
java-logging: java-logging/**
110
java-logging-logback: java-logging-logback/**
111
+ java-spanner: java-spanner/**
112
sdk-platform-java: sdk-platform-java/**
113
split-units:
114
runs-on: ubuntu-latest
java-spanner/pom.xml
@@ -153,4 +153,14 @@
153
</plugins>
154
</build>
155
156
+ <profiles>
157
+ <!-- skip tests if bulkTests profile is enabled (when testing the rest of the monorepo) -->
158
+ <profile>
159
+ <id>bulkTests</id>
160
+ <properties>
161
+ <skipTests>true</skipTests>
162
+ </properties>
163
+ </profile>
164
+ </profiles>
165
+
166
</project>
0 commit comments