Skip to content

upgrade actions

upgrade actions #22

Workflow file for this run

name: Pytest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
# - uses: schmiddim/action-wget-unzip@v2
# with:
# url: "https://github.com/gbdk-2020/gbdk-2020/releases/download/4.3.0/gbdk-linux64.tar.gz"
# destination: gbdk
- uses: robinraju/release-downloader@v1
with:
repository: "gbdk-2020/gbdk-2020"
tag: "4.3.0"
fileName: "gbdk-linux64.tar.gz"
extract: true
tarBall: true
- uses: pyvista/setup-headless-display-action@v2
- name: Install wine
run: |
sudo dpkg --add-architecture i386
sudo mkdir -pm755 /etc/apt/keyrings
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources
sudo apt update
sudo apt install -y --install-recommends winehq-stable winbind
wine --version
- name: Install wine-mono
run: |
wget https://github.com/madewokherd/wine-mono/releases/download/wine-mono-9.0.0/wine-mono-9.0.0-x86.msi
WINEDEBUG=fixme-all WINEDLLOVERRIDES=mscoree=d wine wine-mono-9.0.0-x86.msi
- name: Get BGB
uses: schmiddim/action-wget-unzip@v2
with:
url: "https://bgb.bircd.org/bgb.zip"
destination: bgb
- name: Install dependencies
run: |
cd tests
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# - name: Lint with Ruff
# run: |
# cd tests
# pip install ruff
# ruff check --format=github --target-version=py310 .
# continue-on-error: true
- name: Run wine
run: |
cd tests
WINEDEBUG=fixme-all wine ../bgb/bgb.exe -set \"DebugSrcBrk=1\" -hf -stateonexit -screenonexit build/wav_test_load_and_play.bmp build/wav_test_load_and_play.gb
ls -alF
# - name: Test with pytest
# run: |
# cd tests
# pytest -v -s