Skip to content

Rm redundant py architure reporting #194

Rm redundant py architure reporting

Rm redundant py architure reporting #194

Workflow file for this run

on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, macos-11, macos-12]
include:
- os: macos-latest
- os: macos-11
- os: macos-12
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Report available Python architecture(s)
run: file `which python3`
- name: Create venv to isolate Python dependencies
run: |
python3 -m venv wailvenv
source wailvenv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV
- name: Build
run: sh ./bundledApps/MAKEFILE.sh -q
- name: Install screenshot utility
run: python3 -m pip install screenshot
- name: Run
working-directory: /Applications
run: |
pwd
ls
sleep 10
open -a /Applications/WAIL.app
sleep 10
ps -A | grep WAIL
- name: Iterate tabs, taking screenshot
env:
KEYCODES: 29 18 19 20 21
run: |
for k in $KEYCODES; do
osascript tests/changeTabs.scpt $k
screenshot WAIL --filename wail-${{matrix.os}}-$k.png --shadow
done
- name: Upload screenshot
uses: actions/upload-artifact@v4
with:
name: wail-screenshot-${{matrix.os}}
path: wail-${{matrix.os}}*.png
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: wail-screenshot-${{matrix.os}}