-
Notifications
You must be signed in to change notification settings - Fork 25
66 lines (54 loc) · 1.45 KB
/
android.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Android CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Building Java-Kotlin-Maven Interop Sample
working-directory: ./JavaKotlinMavenInterop
run: |
chmod +x gradlew
./gradlew :kotlin-lib:publishToMavenLocal
./gradlew :java-app-gradle:run
cd java-app-maven
mvn compile exec:java
- name: JVM Console
working-directory: ./JVMConsole
run: |
chmod +x gradlew
./gradlew jar
- name: Building App Services Usage Samples
working-directory: ./AppServicesUsageSamples
run: |
chmod +x gradlew
./gradlew assemble
- name: Building Intro [Debug]
working-directory: ./Intro
run: |
chmod +x gradlew
./gradlew buildDebug
- name: Building Bookshelf [Debug]
working-directory: ./Bookshelf
run: |
chmod +x gradlew
./gradlew buildDebug
- name: Building KMP Demo
working-directory: ./MultiplatformDemo
run: |
chmod +x gradlew
./gradlew assemble
- name: Building KMP Sync Demo
working-directory: ./MultiplatformDemoWithSync
run: |
chmod +x gradlew
./gradlew assemble