Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed May 16, 2023
1 parent 6ae388f commit f36b378
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches-ignore:
- main
- ci-kotlin-matrix

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-kotlin-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
kotlin-version: ${{ matrix.kotlin-version }}
kotlin-use-k2: ${{ matrix.kotlin-use-k2 }}
patch-file: './.github/patches/K_N_workaround.patch'
skip-compatibility-tests: true
run-compatibility-tests: false
10 changes: 5 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ on:
patch-file:
description: Path to git patch to apply
type: string
skip-compatibility-tests:
run-compatibility-tests:
type: boolean
required: false
default: false
default: true

workflow_dispatch:
inputs:
Expand All @@ -41,10 +41,10 @@ on:
patch-file:
description: Path to git patch to apply
type: string
skip-compatibility-tests:
run-compatibility-tests:
type: boolean
required: false
default: false
default: true

env:
KOTLIN_VERSION_OVERRIDE: ${{ inputs.kotlin-version }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
-Pkotlin.experimental.tryK2=${{ inputs.kotlin-use-k2 }}
compatibility-generate:
if: !inputs.skip-compatibility-tests
if: ${{ inputs.run-compatibility-tests }}
name: "Compatibility tests: Generate"
runs-on: ${{ matrix.os }}
strategy:
Expand Down

0 comments on commit f36b378

Please sign in to comment.