Skip to content

Commit

Permalink
Update Kotlin EAP
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed Dec 2, 2024
1 parent 69b77a8 commit c06670c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci-kotlin-eap.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Kotlin EAP CI
on:
push:
workflow_dispatch:
inputs:
kotlinVersion:
description: 'Kotlin version'
required: false
default: '2.1.0-dev-+'

schedule:
- cron: '0 0 * * MON'
Expand All @@ -16,13 +16,16 @@ defaults:

jobs:
kotlin-eap:
name: ${{ matrix.os }}/${{ matrix.kotlin-version }}/${{ matrix.try-next }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
kotlin-version: [ '', '${{ inputs.kotlinVersion }}' ]
try-next: [ 'true', 'false' ]
kotlin-version:
- '' # uses current project version
- ${{ inputs.kotlinVersion || '2.1.20-dev-+' }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-environment
Expand All @@ -31,7 +34,7 @@ jobs:

- run: >
./gradlew
build publishToMavenLocal
build publishToMavenLocal linkAll
--continue
-Pckbuild.skipTestTasks=true
-Pckbuild.warningsAsErrors=false
Expand Down

0 comments on commit c06670c

Please sign in to comment.