Skip to content

Commit 28e3e84

Browse files
committed
Add test-manually.yml
1 parent 5eabf24 commit 28e3e84

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test-manually.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
required: true
99
default: ".github/config/test-strategy-matrix.json"
1010
type: string
11-
entry-name:
11+
runner-name:
1212
description: "Runner as defined in matrix (e.g., iosRunner, appleOtherRunner, jvmRunner)"
1313
required: true
1414
default: "jvmRunner"
@@ -41,13 +41,13 @@ jobs:
4141
- id: pick
4242
uses: actions/github-script@v7
4343
env:
44-
ENTRY_NAME: ${{ inputs.entry-name }}
44+
ENTRY_NAME: ${{ inputs.runner-name }}
4545
with:
4646
script: |
4747
const fs = require('fs');
4848
const entryName = process.env.ENTRY_NAME;
4949
if (!entryName) {
50-
core.setFailed('Missing entry-name input');
50+
core.setFailed('Missing runner-name input');
5151
return;
5252
}
5353
const matrix = JSON.parse(fs.readFileSync('${{ inputs.matrix-path }}', 'utf8'));
@@ -67,7 +67,7 @@ jobs:
6767
with:
6868
override-cache: ${{ inputs.override-cache }}
6969
os: ${{ needs.select-entry.outputs.os }}
70-
name: ${{ inputs.entry-name }}
70+
name: ${{ inputs.runner-name }}
7171
testArgs: ${{ needs.select-entry.outputs.testArgs }}
7272
enable-kvm: ${{ needs.select-entry.outputs.enableKvm == 'true' }}
7373
kotlin-version: ${{ inputs.kotlin-version }}

0 commit comments

Comments
 (0)