diff --git a/.github/workflows/build-dev.yml b/.github/workflows/build-dev.yml index fef38054..16f54926 100644 --- a/.github/workflows/build-dev.yml +++ b/.github/workflows/build-dev.yml @@ -4,6 +4,7 @@ on: push: branches-ignore: - main + - ci-kotlin-matrix jobs: test: diff --git a/.github/workflows/build-kotlin-matrix.yml b/.github/workflows/build-kotlin-matrix.yml index ca573d5b..ad14575c 100644 --- a/.github/workflows/build-kotlin-matrix.yml +++ b/.github/workflows/build-kotlin-matrix.yml @@ -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 diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 215abdc0..dbc0cbbe 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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: @@ -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 }} @@ -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: