|
16 | 16 | type: string |
17 | 17 | required: false |
18 | 18 | description: |
19 | | - 'The name of the supported Kotlin version (SKIE flavor) to test. Latest supported version is used for all tests except Gradle tests if not specified. Gradle tests by default test all versions.' |
| 19 | + 'The name of the supported Kotlin version (SKIE flavor) to test. Latest supported version is used for all tests if not specified.' |
20 | 20 | compiler_version: |
21 | 21 | type: string |
22 | 22 | required: false |
|
78 | 78 | - name: Run Acceptance Tests |
79 | 79 | uses: gradle/gradle-build-action@v2.4.2 |
80 | 80 | with: |
81 | | - arguments: ":acceptance-tests:functional:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 81 | + arguments: ":acceptance-tests:functional:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
82 | 82 | build-root-directory: SKIE |
83 | 83 | env: |
84 | 84 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -120,7 +120,7 @@ jobs: |
120 | 120 | "-Pmatrix.targets=macosArm64" |
121 | 121 | "-Pmatrix.configurations=${{ inputs.configuration || 'debug' }}" |
122 | 122 | "-Pmatrix.linkModes=${{ inputs.linkage || 'static' }}" |
123 | | - "-PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 123 | + "-PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
124 | 124 | build-root-directory: test-runner |
125 | 125 | - name: Publish Test Report |
126 | 126 | uses: mikepenz/action-junit-report@v4 |
@@ -149,7 +149,7 @@ jobs: |
149 | 149 | uses: gradle/gradle-build-action@v2.4.2 |
150 | 150 | id: run-tests |
151 | 151 | with: |
152 | | - arguments: ":acceptance-tests:type-mapping:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 152 | + arguments: ":acceptance-tests:type-mapping:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
153 | 153 | build-root-directory: SKIE |
154 | 154 | env: |
155 | 155 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -182,7 +182,7 @@ jobs: |
182 | 182 | - name: Run External Libraries Tests |
183 | 183 | uses: gradle/gradle-build-action@v2.4.2 |
184 | 184 | with: |
185 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 185 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
186 | 186 | build-root-directory: SKIE |
187 | 187 | env: |
188 | 188 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -215,7 +215,7 @@ jobs: |
215 | 215 | - name: Run External Libraries Tests |
216 | 216 | uses: gradle/gradle-build-action@v2.4.2 |
217 | 217 | with: |
218 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 218 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
219 | 219 | build-root-directory: SKIE |
220 | 220 | env: |
221 | 221 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -248,7 +248,7 @@ jobs: |
248 | 248 | - name: Run External Libraries Tests |
249 | 249 | uses: gradle/gradle-build-action@v2.4.2 |
250 | 250 | with: |
251 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 251 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
252 | 252 | build-root-directory: SKIE |
253 | 253 | env: |
254 | 254 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -281,7 +281,7 @@ jobs: |
281 | 281 | - name: Run External Libraries Tests |
282 | 282 | uses: gradle/gradle-build-action@v2.4.2 |
283 | 283 | with: |
284 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 284 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
285 | 285 | build-root-directory: SKIE |
286 | 286 | env: |
287 | 287 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -314,7 +314,7 @@ jobs: |
314 | 314 | - name: Run External Libraries Tests |
315 | 315 | uses: gradle/gradle-build-action@v2.4.2 |
316 | 316 | with: |
317 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 317 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
318 | 318 | build-root-directory: SKIE |
319 | 319 | env: |
320 | 320 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -347,7 +347,7 @@ jobs: |
347 | 347 | - name: Run External Libraries Tests |
348 | 348 | uses: gradle/gradle-build-action@v2.4.2 |
349 | 349 | with: |
350 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 350 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
351 | 351 | build-root-directory: SKIE |
352 | 352 | env: |
353 | 353 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -380,7 +380,7 @@ jobs: |
380 | 380 | - name: Run External Libraries Tests |
381 | 381 | uses: gradle/gradle-build-action@v2.4.2 |
382 | 382 | with: |
383 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 383 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
384 | 384 | build-root-directory: SKIE |
385 | 385 | env: |
386 | 386 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -413,7 +413,7 @@ jobs: |
413 | 413 | - name: Run External Libraries Tests |
414 | 414 | uses: gradle/gradle-build-action@v2.4.2 |
415 | 415 | with: |
416 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 416 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
417 | 417 | build-root-directory: SKIE |
418 | 418 | env: |
419 | 419 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -446,7 +446,7 @@ jobs: |
446 | 446 | - name: Run External Libraries Tests |
447 | 447 | uses: gradle/gradle-build-action@v2.4.2 |
448 | 448 | with: |
449 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 449 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
450 | 450 | build-root-directory: SKIE |
451 | 451 | env: |
452 | 452 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -479,7 +479,7 @@ jobs: |
479 | 479 | - name: Run External Libraries Tests |
480 | 480 | uses: gradle/gradle-build-action@v2.4.2 |
481 | 481 | with: |
482 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 482 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
483 | 483 | build-root-directory: SKIE |
484 | 484 | env: |
485 | 485 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -512,7 +512,7 @@ jobs: |
512 | 512 | - name: Run External Libraries Tests |
513 | 513 | uses: gradle/gradle-build-action@v2.4.2 |
514 | 514 | with: |
515 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 515 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
516 | 516 | build-root-directory: SKIE |
517 | 517 | env: |
518 | 518 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -545,7 +545,7 @@ jobs: |
545 | 545 | - name: Run External Libraries Tests |
546 | 546 | uses: gradle/gradle-build-action@v2.4.2 |
547 | 547 | with: |
548 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 548 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
549 | 549 | build-root-directory: SKIE |
550 | 550 | env: |
551 | 551 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -578,7 +578,7 @@ jobs: |
578 | 578 | - name: Run External Libraries Tests |
579 | 579 | uses: gradle/gradle-build-action@v2.4.2 |
580 | 580 | with: |
581 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 581 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
582 | 582 | build-root-directory: SKIE |
583 | 583 | env: |
584 | 584 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
@@ -611,7 +611,7 @@ jobs: |
611 | 611 | - name: Run External Libraries Tests |
612 | 612 | uses: gradle/gradle-build-action@v2.4.2 |
613 | 613 | with: |
614 | | - arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '' }}" |
| 614 | + arguments: ":acceptance-tests:libraries:test -PversionSupport.kotlin.enabledVersions=${{ inputs.kotlin_version_name && (inputs.compiler_version && format('{0}[{1}]', inputs.kotlin_version_name, inputs.compiler_version) || inputs.kotlin_version_name) || '2.2.20' }}" |
615 | 615 | build-root-directory: SKIE |
616 | 616 | env: |
617 | 617 | KOTLIN_LINK_MODE: ${{ inputs.linkage }} |
|
0 commit comments