Disable simulator test, enable video tests #2558
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: OSX Safari | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-13 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install browsertime | |
run: npm ci | |
- name: Install python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install ffmpeg | |
uses: FedericoCarboni/setup-ffmpeg@v2 | |
- name: Install dependencies | |
run: | | |
sudo safaridriver --enable | |
sudo rm '/usr/local/bin/2to3' | |
python -m pip install --upgrade --user pip | |
python -m pip install --upgrade --user setuptools | |
python -m pip install --user pyssim OpenCV-Python Numpy | |
python -m pip --version | |
python -m pip show Pillow | |
python -m pip show pyssim | |
- name: List versions | |
run: | | |
system_profiler SPDisplaysDataType |grep Resolution | |
ffmpeg -version | |
- name: List all simulators | |
run: xcrun xctrace list devices | |
#- name: Boot iPhone 14 | |
# run: | | |
# IPHONE14=$(xcrun xctrace list devices 2>&1 | grep -m 1 "iPhone 14 Simulator" | awk -F'[()]' '{print $4}') | |
# xcrun simctl boot $IPHONE14 | |
#- name: Start local HTTP server | |
# run: (npm run start-server&) | |
- name: Test Safari without video | |
run: ./bin/browsertime.js -b safari -n 1 https://www.sitespeed.io/ | |
#- name: Test Safari iOS simulator | |
# run: | | |
# IPHONE14=$(xcrun xctrace list devices 2>&1 | grep -m 1 "iPhone 14 Simulator" | awk -F'[()]' '{print $4}') | |
# ./bin/browsertime.js -b safari -n 1 --safari.useSimulator --video --visualMetrics --safari.deviceUDID $IPHONE14 https://www.sitespeed.io/ | |
- name: Test Safari with video and Visual Metrics | |
run: ./bin/browsertime.js -b safari -n 1 --video --visualMetrics https://www.sitespeed.io/ -vvv | |
- name: Test Safari with video and Visual Metrics for multi pages | |
run: ./bin/browsertime.js -b safari -n 1 --video --visualMetrics test/data/navigationscript/multiMac.cjs |