aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build-macos.yml37
1 files changed, 0 insertions, 37 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml
deleted file mode 100644
index e007e13..0000000
--- a/.github/workflows/build-macos.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-name: CMake Build (macOS x86-64)
-
-on:
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
-
-env:
- BUILD_TYPE: Release
-
-jobs:
- build:
-
- runs-on: macos-latest
-
- steps:
- - uses: actions/checkout@v1
- - name: Install dependencies
- working-directory: ${{runner.workspace}}
- run: brew install sdl2 qt@5 libslirp libarchive libepoxy
- - name: Create build environment
- run: mkdir ${{runner.workspace}}/build
- - name: Configure
- working-directory: ${{runner.workspace}}/build
- run: |
- cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_PREFIX_PATH="$(brew --prefix qt@5);$(brew --prefix libarchive)" -DMACOS_BUNDLE_LIBS=ON -DMACOS_BUILD_DMG=ON
- - name: Make
- working-directory: ${{runner.workspace}}/build
- run: |
- make -j$(sysctl -n hw.ncpu)
- - uses: actions/upload-artifact@v1
- with:
- name: melonDS.dmg
- path: ${{runner.workspace}}/build/melonDS.dmg