Skip to content

Commit

Permalink
Remove extra step for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Sep 13, 2024
1 parent a28ca50 commit 9e7e5b2
Showing 1 changed file with 0 additions and 66 deletions.
66 changes: 0 additions & 66 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,69 +137,3 @@ jobs:
artifacts: "nugets/*.nupkg"
token: ${{ secrets.GITHUB_TOKEN }}

pipelinetest:
name: pipeline-test-${{ matrix.os }}
needs: [ build ]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
abi: [ x64 ]
include:
- os: macos-latest
abi: arm64
fail-fast: false
steps:
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'

- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '17'

- name: Disable annotations
run: echo "::remove-matcher owner=csc::"

- name: install wine64 on linux
run: |
sudo apt install p7zip-full curl
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 --install-recommends winehq-stable
if: runner.os == 'Linux'

- name: Install Arial Font
run: |
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | sudo debconf-set-selections
sudo apt install -y ttf-mscorefonts-installer
sudo fc-cache
fc-match Arial
if: runner.os == 'Linux'

- name: install wine64 on macos
run: brew install wine-stable p7zip
if: runner.os == 'macOS'

- name: Setup Wine
run: wget -qO- https://monogame.net/downloads/net8_mgfxc_wine_setup.sh | bash
if: runner.os != 'Windows'

#Not working yet they crash
- name: Test Wine
run: wine64 dotnet --info
env:
WINEPREFIX: /home/runner/.winemonogame
if: runner.os == 'Linux'

#Not working yet they crash
- name: Test Wine
run: wine64 dotnet --info
env:
WINEPREFIX: /Users/runner/.winemonogame
if: runner.os == 'macOS'

0 comments on commit 9e7e5b2

Please sign in to comment.