Skip to content

Commit

Permalink
trying to get the runner-selection correct
Browse files Browse the repository at this point in the history
  • Loading branch information
dagfinno committed Sep 27, 2024
1 parent 2dcd1f2 commit 26b24d0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/taxreport-loadtest-ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@ on:
description: 'Select runner to run the test'
required: true
type: choice
default: "macOS, X64"
default: "[self-hosted,macOS,X64]"
options:
#- ubuntu-latest
- "macOS, X64"
- "[self-hosted,macOS,X64]"

jobs:
run-test:
#runs-on: [ self-hosted, "${{ inputs.select-runner }}" ]
runs-on: ['self-hosted', 'macOS', 'X64']
runs-on: ${{ fromJSON(inputs.select-runner ) }}
#runs-on: ['self-hosted', 'macOS', 'X64']
#runs-on: ['self-hosted', 'Windows', 'X64']
steps:
- name: Checkout
Expand Down

0 comments on commit 26b24d0

Please sign in to comment.