Skip to content
This repository was archived by the owner on Jul 26, 2023. It is now read-only.

Commit 7121a0d

Browse files
fix: enable longpaths support for windows test (#1485) (#4)
Source-Link: googleapis/synthtool@7336562 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:d4b80feffe1579818cdc39466152e9de95789a193408506cd4a1ffbe8804dc00
1 parent 19ba973 commit 7121a0d

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
docker:
15-
digest: sha256:1ec28a46062b19135b11178ceee60231e5f5a92dab454e23ae0aab72cd875906
16-
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
15+
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16+
digest: sha256:d4b80feffe1579818cdc39466152e9de95789a193408506cd4a1ffbe8804dc00
17+
# created: 2022-07-13T13:53:17.676447481Z

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
windows:
4040
runs-on: windows-latest
4141
steps:
42+
- name: Support longpaths
43+
run: git config --system core.longpaths true
4244
- uses: actions/checkout@v3
4345
- uses: actions/setup-java@v3
4446
with:

.kokoro/release/stage.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ retry_with_backoff 3 10 \
3232
mvn clean deploy -B \
3333
--settings ${MAVEN_SETTINGS_FILE} \
3434
-DskipTests=true \
35+
-Dclirr.skip=true \
3536
-DperformRelease=true \
3637
-Dgpg.executable=gpg \
3738
-Dgpg.passphrase=${GPG_PASSPHRASE} \
@@ -42,4 +43,4 @@ then
4243
mvn nexus-staging:release -B \
4344
-DperformRelease=true \
4445
--settings=settings.xml
45-
fi
46+
fi

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ If you are using Maven, add this to your pom.xml file:
2626
</dependency>
2727
```
2828

29-
If you are using Gradle without BOM, add this to your dependencies
29+
If you are using Gradle without BOM, add this to your dependencies:
3030

3131
```Groovy
3232
implementation 'com.google.cloud:google-cloud-dataform:0.0.0'
3333
```
3434

35-
If you are using SBT, add this to your dependencies
35+
If you are using SBT, add this to your dependencies:
3636

3737
```Scala
3838
libraryDependencies += "com.google.cloud" % "google-cloud-dataform" % "0.0.0"

google-cloud-dataform-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0"?>
1+
<?xml version='1.0' encoding='UTF-8'?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.google.cloud</groupId>

google-cloud-dataform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0"?>
1+
<?xml version='1.0' encoding='UTF-8'?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.google.cloud</groupId>

0 commit comments

Comments
 (0)