Skip to content

Commit

Permalink
Kotlin EAP
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed May 22, 2024
1 parent baa7fb2 commit 92309f4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci-kotlin-eap.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Kotlin EAP CI
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * MON'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
kotlin-version: [ '', '2.0.20-dev-+' ]
try-next: [ 'true', 'false' ]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-gradle
with:
cache-disabled: true

- if: matrix.os == 'windows-latest'
uses: msys2/setup-msys2@v2
with:
release: false
install: mingw-w64-x86_64-openssl

- run: ./gradlew build connectedCheck publishToMavenLocal --continue -Pckbuild.skipTests=true -Pckbuild.kotlinVersionOverride=${{ matrix.kotlin-version }} -Pkotlin.experimental.tryNext=${{ matrix.try-next }}

0 comments on commit 92309f4

Please sign in to comment.