From 01255a49477faeec5f9dd1e59df6b4476f2f1c3f Mon Sep 17 00:00:00 2001 From: Jonathan Moallem Date: Sun, 22 Nov 2020 03:03:13 +1100 Subject: [PATCH] Update and rename platform-build.yml to macOS-build.yml --- .github/workflows/macOS-build.yml | 16 +++++++++++++ .github/workflows/platform-build.yml | 34 ---------------------------- 2 files changed, 16 insertions(+), 34 deletions(-) create mode 100644 .github/workflows/macOS-build.yml delete mode 100644 .github/workflows/platform-build.yml 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