mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
ecode: Tentative fix for a segfaul when accesing an LSP Server that isn't running anymore.
26 lines
640 B
YAML
26 lines
640 B
YAML
name: macOS
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
MacOS:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
- name: Checkout submodules
|
|
run: |
|
|
git submodule update --init --recursive
|
|
- name: Install dependencies
|
|
run: |
|
|
brew install wget
|
|
brew install SDL2
|
|
wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-macosx.tar.gz
|
|
tar -xzf premake-5.0.0-beta1-macosx.tar.gz
|
|
- name: Build
|
|
run: |
|
|
./premake5 gmake2
|
|
make -C make/macosx/ all
|