From b0576f6857b9be0329402b1a7135b0d5833bd0b5 Mon Sep 17 00:00:00 2001 From: Tim Dithmer Date: Tue, 28 Mar 2023 19:34:28 +0200 Subject: [PATCH] Remove macos build for now --- .github/workflows/dev.yml | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 82a37ff..c953336 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -65,37 +65,13 @@ jobs: with: name: gui-binary path: bin/snes2c64-gui-windows-amd64.exe - build_gui_mac: - runs-on: macos-latest - steps: - - uses: actions/checkout@v3 - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: 1.19 - - - name: Get dependencies - run: go get github.com/fyne-io/fyne-cross - - - name: Install fyne-cross - run: go install github.com/fyne-io/fyne-cross - - - name: Build - run: mkdir bin; fyne-cross darwin -output gui ./cmd/gui; mv fyne-cross/bin/darwin-amd64/gui bin/snes2c64-gui-darwin-amd64.dmg - - - name: Upload binary - uses: actions/upload-artifact@v3 - with: - name: gui-binary - path: bin/snes2c64-gui-darwin-amd64.dmg release: runs-on: ubuntu-latest needs: [ build_cli, build_gui_linux, - build_gui_windows, - build_gui_mac + build_gui_windows ] steps: - name: Download cli binary