-
Notifications
You must be signed in to change notification settings - Fork 19
39 lines (35 loc) · 961 Bytes
/
ci-kotlin-eap.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
name: Kotlin EAP CI
on:
workflow_dispatch:
inputs:
kotlinVersion:
description: 'Kotlin version'
required: false
default: '2.1.0-dev-+'
schedule:
- cron: '0 0 * * MON'
defaults:
run:
shell: bash
jobs:
kotlin-eap:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
kotlin-version: [ '', '${{ inputs.kotlinVersion }}' ]
try-next: [ 'true', 'false' ]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-environment
with:
cache-disabled: true
- run: >
./gradlew
build publishToMavenLocal
--continue
-Pckbuild.skipTestTasks=true
-Pckbuild.warningsAsErrors=false
-Pckbuild.kotlinVersionOverride=${{ matrix.kotlin-version }}
-Pkotlin.experimental.tryNext=${{ matrix.try-next }}