Output supported Py architectures on GH Actions before and after venv #189
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
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 Python architectures before venv | |
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: Report Python architectures after venv | |
run: file `which python3` | |
- 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}} |