diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9597158..169876c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,17 +33,16 @@ jobs: 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 --install-recommends winehq-stable - sudo apt install -y winetricks - sudo apt install -y winbind + sudo apt install -y --install-recommends winehq-stable winbind wine --version - # - name: Install docker-wine - # run: | - # wget https://raw.githubusercontent.com/scottyhardy/docker-wine/master/docker-wine - # chmod +x docker-wine - - uses: schmiddim/action-wget-unzip@v2 + - 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 + 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/bgbw64.zip" + url: "https://bgb.bircd.org/bgb.zip" destination: bgb - name: Install dependencies run: | @@ -59,7 +58,7 @@ jobs: - name: Run wine run: | cd tests - WINEDEBUG=+all /usr/bin/env wine ../bgb/bgb64.exe -set \"DebugSrcBrk=1\" -hf -stateonexit -screenonexit build/wav_test_load_and_play.bmp build/wav_test_load_and_play.gb + /usr/bin/env wine ../bgb/bgb.exe -set \"DebugSrcBrk=1\" -hf -stateonexit -screenonexit build/wav_test_load_and_play.bmp build/wav_test_load_and_play.gb # - name: Test with pytest # run: | # cd tests