From 5ecf511ea4dd2d83a0ee0ff884db12f5829b0d48 Mon Sep 17 00:00:00 2001 From: Jonathan Moallem Date: Sun, 22 Nov 2020 02:46:05 +1100 Subject: [PATCH] Added setup to platform build actions --- .github/workflows/platform-build.yml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/workflows/platform-build.yml b/.github/workflows/platform-build.yml index f877052..f2168fd 100644 --- a/.github/workflows/platform-build.yml +++ b/.github/workflows/platform-build.yml @@ -12,23 +12,21 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 + - name: install Xcode tools + run: xcode-select --install - name: make run: make - - name: make check - run: make check - - name: make distcheck - run: make distcheck ubuntu-build: runs-on: ubuntu-latest 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 - - name: make check - run: make check - - name: make distcheck - run: make distcheck windows-build: runs-on: windows-latest @@ -36,7 +34,3 @@ jobs: - uses: actions/checkout@v2 - name: make run: mingw32-make - - name: make check - run: make check - - name: make distcheck - run: make distcheck