Skip to content

Commit 60cce2a

Browse files
authored
ci: installing google-play-services artifact for Windows (#1706)
* ci: installing google-play-services artifact for Windows * ci: trying Invoke-WebRequest * ci: cont line characters * ci: make mvn command in one line * ci: using Windows bash * ci: trying multi-line and shell for build.sh * ci: upgrading checkstyle dependency * ci: updating checkstyle version * ci: upgraded checkstyle version * ci: turning off auto-crlf conversion for checkout action * ci: cleanup suppressions file filter * ci: specifying file path that works both windows and unix
1 parent 922af40 commit 60cce2a

File tree

4 files changed

+38
-29
lines changed

4 files changed

+38
-29
lines changed

.github/workflows/ci.yaml

+19-1
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,30 @@ jobs:
2727
windows:
2828
runs-on: windows-latest
2929
steps:
30+
- name: git configuration to avoid automatic CRLF conversion
31+
run: |
32+
git config --global core.autocrlf false
33+
git config --global core.eol lf
3034
- uses: actions/checkout@v2
3135
- uses: actions/setup-java@v1
3236
with:
3337
java-version: 8
3438
- run: java -version
35-
- run: .kokoro/build.bat
39+
- name: Install google-play-services artifact
40+
shell: bash
41+
run: |
42+
mkdir play-services
43+
cd play-services
44+
curl --output play-services-basement-8.3.0.aar https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-basement/8.3.0/play-services-basement-8.3.0.aar
45+
unzip play-services-basement-8.3.0.aar
46+
mvn install:install-file \
47+
-Dfile=classes.jar \
48+
-DgroupId=com.google.android.google-play-services \
49+
-DartifactId=google-play-services \
50+
-Dversion=1 \
51+
-Dpackaging=jar
52+
- run: .kokoro/build.sh
53+
shell: bash
3654
env:
3755
JOB_TYPE: test
3856
dependencies:

checkstyle-suppressions.xml

+2-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,8 @@
44
"http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">
55

66
<suppressions>
7-
8-
<suppress checks="LineLength" files="com/google/api/client/googleapis/apache/GoogleApacheHttpTransport.java"/>
9-
<suppress checks="LineLength" files="com/google/api/client/googleapis/extensions/appengine/notifications/AppEngineNotificationServlet.java"/>
10-
<suppress checks="LineLength" files="com/google/api/client/googleapis/extensions/appengine/subscriptions/package-info.java"/>
11-
<suppress checks="LineLength" files="com/google/api/client/googleapis/extensions/servlet/notifications/NotificationServlet.java"/>
12-
<suppress checks="LineLength" files="com/google/api/client/googleapis/javanet/GoogleNetHttpTransport.java"/>
13-
<suppress checks="LineLength" files="com/google/api/client/googleapis/subscriptions/NotificationHeaders.java"/>
7+
<suppress checks="LineLength" files="com[/\\]google[/\\]api[/\\]client[/\\]googleapis[/\\]extensions[/\\]appengine[/\\]notifications[/\\]AppEngineNotificationServlet.java"/>
8+
<suppress checks="LineLength" files="com[/\\]google[/\\]api[/\\]client[/\\]googleapis[/\\]extensions[/\\]servlet[/\\]notifications[/\\]NotificationServlet.java"/>
149

1510
<!-- Don't check JavaDoc on package-info. -->
1611
<suppress checks="JavadocStyleCheck" files="package-info.java"/>

checkstyle.xml

+16-20
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,8 @@ page at http://checkstyle.sourceforge.net/config.html -->
7272
<module name="JavadocMethod">
7373
<property name="scope" value="protected"/>
7474
<property name="severity" value="warning"/>
75-
<property name="allowMissingJavadoc" value="true"/>
7675
<property name="allowMissingParamTags" value="true"/>
7776
<property name="allowMissingReturnTag" value="true"/>
78-
<property name="allowMissingThrowsTags" value="true"/>
79-
<property name="allowThrowsTagsForSubclasses" value="true"/>
80-
<property name="allowUndeclaredRTE" value="true"/>
8177
</module>
8278

8379
<module name="JavadocType">
@@ -183,22 +179,6 @@ page at http://checkstyle.sourceforge.net/config.html -->
183179
184180
-->
185181

186-
<module name="LineLength">
187-
<!-- Checks if a line is too long. -->
188-
<property name="max" value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.max}" default="100"/>
189-
<property name="severity" value="error"/>
190-
191-
<!--
192-
The default ignore pattern exempts the following elements:
193-
- import statements
194-
- long URLs inside comments
195-
-->
196-
197-
<property name="ignorePattern"
198-
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.ignorePattern}"
199-
default="^(package .*;\s*)|(import .*;\s*)|( *(\*|//).*https?://.*)$"/>
200-
</module>
201-
202182
<module name="LeftCurly">
203183
<!-- Checks for placement of the left curly brace ('{'). -->
204184
<property name="severity" value="warning"/>
@@ -316,7 +296,23 @@ page at http://checkstyle.sourceforge.net/config.html -->
316296
-->
317297
<property name="severity" value="warning"/>
318298
</module>
299+
</module>
300+
301+
302+
<module name="LineLength">
303+
<!-- Checks if a line is too long. -->
304+
<property name="max" value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.max}" default="100"/>
305+
<property name="severity" value="error"/>
306+
307+
<!--
308+
The default ignore pattern exempts the following elements:
309+
- import statements
310+
- long URLs inside comments
311+
-->
319312

313+
<property name="ignorePattern"
314+
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.ignorePattern}"
315+
default="^(package .*;\s*)|(import .*;\s*)|( *(\*|//).*https?://.*)$"/>
320316
</module>
321317
</module>
322318

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@
561561
<dependency>
562562
<groupId>com.puppycrawl.tools</groupId>
563563
<artifactId>checkstyle</artifactId>
564-
<version>8.23</version>
564+
<version>8.39</version>
565565
</dependency>
566566
</dependencies>
567567
<configuration>

0 commit comments

Comments
 (0)