[SDK-3372]: Connect UI tests to the remote AltTester server #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: UI Tests 🧪 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build sample game for AltTester 🛠️ | |
runs-on: ubuntu-latest-8-cores | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- uses: actions/cache@v3 | |
with: | |
path: Library | |
key: Library-${{ hashFiles('sample/Assets/**', 'sample/Packages/**', 'sample/ProjectSettings/**') }} | |
restore-keys: | | |
Library- | |
- name: Build project | |
uses: game-ci/unity-builder@v4 | |
env: | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }} | |
with: | |
targetPlatform: StandaloneOSX | |
projectPath: sample | |
buildMethod: MacBuilder.BuildForAltTester | |
customParameters: -logFile logFile.log -quit -batchmode | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Build-StandaloneOSX | |
path: sample/Builds/MacOS | |
test: | |
name: Run UI tests on AltTester 🧪 | |
runs-on: macos-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- uses: actions/download-artifact@v4 | |
with: | |
name: Build-StandaloneOSX | |
- name: Open application | |
run: | | |
export RUN_IN_BROWSERSTACK="false" | |
export ALTSERVER_HOST="54.66.58.33" | |
export ALTSERVER_PORT=13000 | |
chmod -R 755 SampleApp.app | |
codesign --deep -s - -f SampleApp.app | |
echo "Opening Unity sample app..." | |
open SampleApp.app | |
echo "Unity sample app launched. Waiting for 5 seconds..." | |
sleep 5 | |
echo $? | |
pgrep -f SampleApp | |
osascript -e 'tell application "SampleApp" to activate' | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: pip install -r "sample/Tests/requirements.txt" | |
- name: Run UI tests | |
run: | | |
export ALTSERVER_HOST="54.66.58.33" | |
export ALTSERVER_PORT=13000 | |
pytest -s -v sample/Tests/test.py | |