Skip to content

Commit

Permalink
Kotlin EAP
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed Jul 14, 2023
1 parent 9ebfd3f commit f01754b
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/build-kotlin-eap.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Build Kotlin EAP
on:
push:
branches:
- kotlin-eap/*

jobs:
build:
name: Kotlin=${{ matrix.kotlin-version }}
strategy:
fail-fast: false
matrix:
kotlin-version: [
'', # empty means a current project version
'[1.9.20-dev,1.9.20-dev-9999['
]
uses: ./.github/workflows/run-tests.yml
with:
cache-disabled: true
run-compatibility-tests: false
kotlin-version: ${{ matrix.kotlin-version }}

build-k2:
name: Kotlin/K2=${{ matrix.kotlin-version }}
strategy:
fail-fast: false
matrix:
kotlin-version: [
'', # empty means a current project version
'[1.9.20-dev,1.9.20-dev-9999['
]
uses: ./.github/workflows/run-tests.yml
with:
cache-disabled: true
run-compatibility-tests: false
kotlin-version: ${{ matrix.kotlin-version }}
kotlin-use-k2: true

build-cc:
name: Kotlin/CC=${{ matrix.kotlin-version }}
strategy:
fail-fast: false
matrix:
kotlin-version: [
'', # empty means a current project version
'[1.9.20-dev,1.9.20-dev-9999['
]
uses: ./.github/workflows/run-tests.yml
with:
cache-disabled: true
run-compatibility-tests: false
kotlin-version: ${{ matrix.kotlin-version }}
configuration-cache-enabled: true

0 comments on commit f01754b

Please sign in to comment.