From 1dc3666fd0c684a67d2ad7aa593af5c0edc9152d Mon Sep 17 00:00:00 2001 From: Dean M Greer <38226388+Gcenx@users.noreply.github.com> Date: Fri, 23 Sep 2022 10:40:26 -0400 Subject: [PATCH] macOS.yml: Remove wine-devel action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since gitlab.winehq.org hosts it’s own macOS runner this is no longer required --- .github/workflows/macOS.yml | 57 ------------------------------------- 1 file changed, 57 deletions(-) diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index c3928778..30c98cbe 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -64,60 +64,3 @@ jobs: run: | cd $GITHUB_WORKSPACE/wine make -j$(sysctl -n hw.ncpu 2>/dev/null) - - wine-devel: - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - - - name: Install dependencies - run: | - brew update - brew install --cask xquartz - brew install bison \ - gphoto2 \ - gst-plugins-base \ - mingw-w64 \ - molten-vk \ - mpg123 - - - name: Add bison & krb5 to $PATH - run: | - set -eu - echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH - echo "$(brew --prefix krb5)/bin" >> $GITHUB_PATH - - - name: Get upstream-commit - run: | - mkdir $GITHUB_WORKSPACE/wine - cd wine - git init - git fetch git://source.winehq.org/git/wine.git $($GITHUB_WORKSPACE/patches/patchinstall.sh --upstream-commit) --depth=1 - git checkout $($GITHUB_WORKSPACE/patches/patchinstall.sh --upstream-commit) - - - name: Configure wine64 - env: - LDFLAGS: "-Wl,-rpath,/opt/X11/lib" - # Avoid weird linker errors with Xcode 10 and later - MACOSX_DEPLOYMENT_TARGET: "10.14" - run: | - cd $GITHUB_WORKSPACE/wine - - cd $GITHUB_WORKSPACE/wine - ./configure --enable-win64 \ - --without-alsa \ - --without-capi \ - --without-dbus \ - --without-inotify \ - --without-oss \ - --without-pulse \ - --without-udev \ - --without-v4l2 \ - --x-include=/opt/X11/include \ - --x-lib=/opt/X11/lib - - - name: Build wine64 - run: | - cd $GITHUB_WORKSPACE/wine - make -j$(sysctl -n hw.ncpu 2>/dev/null)