-
Notifications
You must be signed in to change notification settings - Fork 10
94 lines (79 loc) · 2.52 KB
/
ci.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: CI
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
branches:
- main
types: [ opened, synchronize, reopened, ready_for_review ]
paths-ignore:
- 'art/**'
- '**.md'
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
verify:
name: "Verify"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: setup-java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v3
- name: Binary Compatibility Validation
run: ./gradlew apiCheck --scan
- name: Lint
run: ./gradlew lint --scan
- name: Upstream Tests
run: ./gradlew :mcu-upstream:test --scan
build:
strategy:
matrix:
config: [
{ target: "android", os: "ubuntu-latest", tasks: ":demo:composeApp:assembleRelease", continueOnError: false },
{ target: "osx-desktop", os: "macos-latest", tasks: ":demo:composeApp:packageDistributionForCurrentOS", continueOnError: false },
{ target: "windows-desktop", os: "windows-latest", tasks: ":demo:composeApp:packageDistributionForCurrentOS", continueOnError: true },
{ target: "linux-desktop", os: "ubuntu-latest", tasks: ":demo:composeApp:packageDistributionForCurrentOS", continueOnError: false }
]
runs-on: ${{ matrix.config.os }}
name: Build ${{ matrix.config.target }}
needs: verify
steps:
- name: Checkout
uses: actions/checkout@v4
- name: setup-java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
- name: Cache Konan
uses: actions/cache@v4
with:
path: |
~/.konan/caches
~/.konan/dependencies
~/.konan/kotlin-native-prebuilt-macos-*
key: ${{ runner.os }}-konan-${{ hashFiles('**/gradle/libs.versions.toml') }}
restore-keys: |
${{ runner.os }}-konan-
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build ${{ matrix.config.target }} targets
continue-on-error: ${{ matrix.config.continueOnError }}
run: ./gradlew ${{ matrix.config.tasks }} --scan