CI: Use the correct MacOS path in web-benchmarks job
This commit is contained in:
parent
23fea4208c
commit
236c0b41a5
1 changed files with 6 additions and 3 deletions
9
.github/workflows/web-benchmarks.yml
vendored
9
.github/workflows/web-benchmarks.yml
vendored
|
|
@ -122,10 +122,13 @@ jobs:
|
|||
source .venv/bin/activate
|
||||
python3 -m pip install -r requirements.txt
|
||||
|
||||
run_options='--iterations=5'
|
||||
run_options="${run_options} --executable=${{ github.workspace }}/Install/bin/Ladybird"
|
||||
if [ "${{ matrix.os_name }}" = "macOS" ]; then
|
||||
executable="${{ github.workspace }}/Install/bundle/Ladybird.app/Contents/MacOS/Ladybird"
|
||||
else
|
||||
executable="${{ github.workspace }}/Install/bin/Ladybird"
|
||||
fi
|
||||
|
||||
./run.py ${run_options}
|
||||
./run.py --iterations=5 --executable="${executable}"
|
||||
|
||||
- name: 'Save results as an artifact'
|
||||
uses: actions/upload-artifact@v7
|
||||
|
|
|
|||
Loading…
Reference in a new issue