diff options
author | AtlasLinden <114031241+AtlasLinden@users.noreply.github.com> | 2025-06-10 11:11:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-10 11:11:20 -0700 |
commit | 41ef5b25530feeee775a03aafa7ee0b8b5146d4f (patch) | |
tree | 88450d8f6b499ac8549ba6787e3df509c5f85ac8 /.github | |
parent | 3c7dde56e55bc36b3befe9fbf23fd1d50fdd68e2 (diff) |
Resolve qatest.yaml invalid workflow error
Previous edit to allow runners to work independently caused the following error:
The workflow is not valid. .github/workflows/qatest.yaml (Line: 19, Col: 10): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.runner
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/qatest.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/qatest.yaml b/.github/workflows/qatest.yaml index 08c4fd4e29..5d8894a3f4 100644 --- a/.github/workflows/qatest.yaml +++ b/.github/workflows/qatest.yaml @@ -15,10 +15,6 @@ on: required: true default: '14806728332' -concurrency: - group: ${{ github.workflow }}-${{ matrix.runner }} - cancel-in-progress: false # Prevents cancellation of in-progress jobs - jobs: debug-workflow: runs-on: ubuntu-latest @@ -35,6 +31,10 @@ jobs: echo "GitHub Workflow Name: ${{ github.workflow }}" install-viewer-and-run-tests: + concurrency: + group: ${{ github.workflow }}-${{ matrix.runner }} + cancel-in-progress: false # Prevents cancellation of in-progress jobs + strategy: matrix: include: @@ -48,7 +48,7 @@ jobs: install-path: 'C:\viewer-automation-main' # Commented out until mac runner is available # - os: mac - # runner: qa-mac + # runner: qa-mac-atlas # artifact: Mac-installer # install-path: '$HOME/Documents/viewer-automation' fail-fast: false @@ -572,4 +572,4 @@ jobs: # uses: actions/upload-artifact@v4 # with: # name: test-results-${{ matrix.runner }} - # path: ${{ matrix.install-path }}/regressionTest/test_results.html
\ No newline at end of file + # path: ${{ matrix.install-path }}/regressionTest/test_results.html |