diff options
author | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2021-04-24 14:27:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-24 13:27:11 +0000 |
commit | def272fac4151b6fe5d76d73c5af3bc9bc8df9e1 (patch) | |
tree | a72b5e7ae41375135c880f0e1ecf6eaa3fc43a8a /.github/workflows | |
parent | 19a0eb4e5671f86cbc94cbd37bf52294c711863d (diff) |
Use Azure Pipelines so we can target macOS 10.14 (#1042)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-macos.yml | 37 |
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 |