Skip to content

GitHub Actions: Disable building Android on macOS due to weird java.l… #1069

GitHub Actions: Disable building Android on macOS due to weird java.l…

GitHub Actions: Disable building Android on macOS due to weird java.l… #1069

Workflow file for this run

name: macOS
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
brew install sdl2 freetype libvorbis libepoxy jpeg webp meson pkg-config boost
- name: Build with Meson
run: |
meson build
ninja -Cbuild
- name: Build with CMake
run: |
cmake -H. -Bbuild-cmake -GNinja
ninja -Cbuild-cmake
# - name: Android
# run: |
# make -Candroid