-
Notifications
You must be signed in to change notification settings - Fork 2
148 lines (144 loc) · 4.5 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
name: CI
on:
push:
branches: [master]
paths:
- "**/*.kt"
- "**/*.kts"
- "**/jni/*"
- gradle/**
pull_request:
paths:
- "/*.kt"
- "**/*.kts"
- "**/jni/*"
- gradle/**
concurrency:
cancel-in-progress: true
group: ${{github.workflow}}-${{github.ref_name}}
permissions:
contents: write
jobs:
generate:
runs-on: ubuntu-latest
name: Generate grammar files
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: gradle
cache-dependency-path: |
gradle/libs.versions.toml
gradle/wrapper/gradle-wrapper.properties
- name: Cache Kotlin/Native prebuilt
uses: actions/cache@v4
with:
path: ${{runner.tool_cache}}/konan/kotlin-native-prebuilt-*
key: konan-${{runner.os}}-prebuilt-1.9
- name: Generate files
run: ./gradlew --no-daemon generateGrammarFiles
env:
KONAN_DATA_DIR: ${{runner.tool_cache}}/konan
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: generated-files
path: languages/*/build/generated/**
retention-days: 1
test:
runs-on: ${{matrix.os}}
name: >-
Test ${{matrix.platform}} platform
${{matrix.lib_platform && format('({0}-{1})', matrix.lib_platform, matrix.lib_arch)}}
needs: [generate]
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
platform: JVM
targets: :ktreesitter:jvmTest
lib_platform: linux
lib_arch: x64
- os: windows-latest
platform: JVM
targets: :ktreesitter:jvmTest
lib_platform: windows
lib_arch: x64
- os: macos-latest
platform: JVM
targets: :ktreesitter:jvmTest
lib_platform: macos
lib_arch: aarch64
- os: ubuntu-latest
platform: Android
targets: :ktreesitter:assembleDebug
- os: ubuntu-latest
platform: Linux
targets: >-
:ktreesitter:compileKotlinLinuxArm64
:ktreesitter:linuxX64Test
- os: windows-latest
platform: Windows
targets: :ktreesitter:mingwX64Test
- os: macos-latest
platform: macOS/iOS
targets: >-
:ktreesitter:macosX64Test
:ktreesitter:macosArm64Test
:ktreesitter:iosSimulatorArm64Test
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: gradle
cache-dependency-path: |
gradle/libs.versions.toml
gradle/wrapper/gradle-wrapper.properties
- name: Set up cross compilation
run: sudo apt-get install -qy {binutils,gcc}-aarch64-linux-gnu
if: matrix.platform == 'Linux'
- name: Restore Kotlin/Native prebuilt
uses: actions/cache/restore@v4
with:
path: ${{runner.tool_cache}}/konan/kotlin-native-prebuilt-*
key: konan-${{runner.os}}-prebuilt-1.9
- name: Download generated files
uses: actions/download-artifact@v4
with:
path: languages
name: generated-files
- name: Build JNI libraries
if: matrix.platform == 'JVM'
run: .github/scripts/build-jni.${{matrix.os == 'windows-latest' && 'ps1' || 'sh'}}
env:
CMAKE_INSTALL_LIBDIR: lib/${{matrix.lib_platform}}/${{matrix.lib_arch}}
- name: Cache Kotlin/Native dependencies
uses: actions/cache@v4
if: matrix.platform != 'JVM' && matrix.platform != 'Android'
with:
path: ${{runner.tool_cache}}/konan/dependencies
key: konan-${{runner.os}}-dependencies
- name: Run tests
run: ./gradlew --no-daemon ${{matrix.targets}}
env:
KONAN_DATA_DIR: ${{runner.tool_cache}}/konan
- name: Report test results
uses: mikepenz/action-junit-report@v4
if: matrix.platform == 'JVM' && !cancelled()
with:
annotate_only: true
detailed_summary: true
report_paths: ktreesitter/build/reports/xml/*