Skip to content

ci: installing google-play-services artifact for Windows #1706

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Feb 12, 2021
Next Next commit
ci: installing google-play-services artifact for Windows
  • Loading branch information
suztomo committed Feb 11, 2021
commit 92a180b4a8c34494425ece50abe0ec292570fe8d
12 changes: 12 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ jobs:
with:
java-version: 8
- run: java -version
- name: Install google-play-services artifact
run: |
mkdir play-services
cd play-services
wget https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-basement/8.3.0/play-services-basement-8.3.0.aar
unzip play-services-basement-8.3.0.aar
mvn install:install-file \
-Dfile=classes.jar \
-DgroupId=com.google.android.google-play-services \
-DartifactId=google-play-services \
-Dversion=1 \
-Dpackaging=jar
- run: .kokoro/build.bat
env:
JOB_TYPE: test
Expand Down