summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/qatest.yaml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/qatest.yaml b/.github/workflows/qatest.yaml
index 43fdb86b7e..aafe455b61 100644
--- a/.github/workflows/qatest.yaml
+++ b/.github/workflows/qatest.yaml
@@ -41,16 +41,16 @@ jobs:
- os: windows
runner: qa-windows-atlas
artifact: Windows-installer
- install-path: 'C:\viewer-sikulix-main'
+ install-path: 'C:\viewer-automation-main'
- os: windows
runner: qa-dan-asus
artifact: Windows-installer
- install-path: 'C:\viewer-sikulix-main'
+ install-path: 'C:\viewer-automation-main'
# Commented out until mac runner is available
# - os: mac
# runner: qa-mac
# artifact: Mac-installer
- # install-path: 'HOME/Documents/viewer-sikulix-main'
+ # install-path: 'HOME/Documents/viewer-automation-main'
fail-fast: false
runs-on: [self-hosted, "${{ matrix.runner }}"]
@@ -81,15 +81,15 @@ jobs:
run: |
Set-ExecutionPolicy RemoteSigned -Scope Process -Force
- - name: Verify viewer-sikulix-main Exists (Windows)
+ - name: Verify viewer-automation-main Exists (Windows)
if: matrix.os == 'windows'
shell: pwsh
run: |
if (-Not (Test-Path -Path '${{ matrix.install-path }}')) {
- Write-Host '❌ Error: viewer-sikulix not found on runner!'
+ Write-Host '❌ Error: viewer-automation folder not found on runner!'
exit 1
}
- Write-Host '✅ viewer-sikulix is already available.'
+ Write-Host '✅ viewer-automation folder is provided.'
- name: Fetch & Download Installer Artifact (Windows)
if: matrix.os == 'windows'
@@ -225,15 +225,15 @@ jobs:
echo "ARTIFACTS_URL=https://api.github.com/repos/secondlife/viewer/actions/runs/${{ github.event.workflow_run.id }}/artifacts" >> $GITHUB_ENV
fi
- - name: Verify viewer-sikulix-main Exists (Mac)
+ - name: Verify viewer-automation-main Exists (Mac)
if: matrix.os == 'mac'
shell: bash
run: |
if [ ! -d "${{ matrix.install-path }}" ]; then
- echo "❌ Error: viewer-sikulix not found on runner!"
+ echo "❌ Error: viewer-automation folder not found on runner!"
exit 1
fi
- echo "✅ viewer-sikulix is already available."
+ echo "✅ viewer-automation is provided."
- name: Fetch & Download Installer Artifact (Mac)
if: matrix.os == 'mac'