diff --git a/.github/workflows/macOS-build.yml b/.github/workflows/macOS-build.yml new file mode 100644 index 0000000..020294a --- /dev/null +++ b/.github/workflows/macOS-build.yml @@ -0,0 +1,16 @@ +name: Platform Build + +on: + push: + branches: [ main ] + + pull_request: + branches: [ main ] + +jobs: + macOS-build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - name: make + run: make diff --git a/.github/workflows/platform-build.yml b/.github/workflows/platform-build.yml deleted file mode 100644 index dfe8f1b..0000000 --- a/.github/workflows/platform-build.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Platform Build - -on: - push: - branches: [ main ] - - pull_request: - branches: [ main ] - -jobs: - macOS-build: - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - name: make - run: make - - ubuntu-build: - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v2 - - name: update apt - run: sudo apt-get update - - name: install raylib dependencies - run: sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev - - name: make - run: make - - windows-build: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - name: make - run: mingw32-make