Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update qatest.yaml to scan build branch name #3509

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/qatest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ concurrency:
cancel-in-progress: true # Cancels any queued job when a new one starts

jobs:
install-and-run-sikuli:
install-viewer-and-run-tests:
runs-on: [self-hosted, qa-machine]
if: >
github.event.workflow_run.conclusion == 'success' &&
contains(github.event.workflow_run.head_commit.message, '[Channel: Release]')
startsWith(github.event.workflow_run.head_branch, 'Second_Life_Release')

steps:
- name: Verify viewer-sikulix Exists
- name: Verify viewer-sikulix-main Exists
run: |
if [ ! -d "C:\viewer-sikulix-main" ]; then
echo "❌ Error: viewer-sikulix not found on runner!"
Expand Down Expand Up @@ -113,4 +113,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: test-results
path: C:\viewer-sikulix-main\regressionTest\test_results.html
path: C:\viewer-sikulix-main\regressionTest\test_results.html
Loading