summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorRay <[email protected]>2020-08-18 15:17:10 +0200
committerGitHub <[email protected]>2020-08-18 15:17:10 +0200
commitdb8927f6b1a4c2efba2c6f4f789caa55ac7564eb (patch)
treee241701787c4292b84a2c3c21d7c22a75e67553f /.github/workflows
parent0d0c3d2504e7d257ff85bac5e1c391399a3ff1ef (diff)
downloadraylib-db8927f6b1a4c2efba2c6f4f789caa55ac7564eb.tar.gz
raylib-db8927f6b1a4c2efba2c6f4f789caa55ac7564eb.zip
Update linux.yml
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/linux.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 8e34752a..f70b23b0 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -37,15 +37,14 @@ jobs:
cd ../../../raylib
sudo apt-get install gcc-multilib lib32gcc-7-dev
sudo apt-get install -y --no-install-recommends libglfw3 libglfw3-dev libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libxext-dev libxfixes-dev
- configure --build=i686-pc-linux-gnu
- name: Build Library
run: |
cd src
gcc -v
- make PLATFORM=PLATFORM_DESKTOP CC=gcc RAYLIB_BUILD_ARCH=${{ matrix.ARCH }} RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib"
+ make BUILD="i686-pc-linux-gnu" PLATFORM=PLATFORM_DESKTOP CC=gcc RAYLIB_BUILD_ARCH=${{ matrix.ARCH }} RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib"
make clean
- make PLATFORM=PLATFORM_DESKTOP CC=gcc RAYLIB_BUILD_ARCH=${{ matrix.ARCH }} RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" -B
+ make BUILD="i686-pc-linux-gnu" PLATFORM=PLATFORM_DESKTOP CC=gcc RAYLIB_BUILD_ARCH=${{ matrix.ARCH }} RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" -B
cd ..
- name: Generate Artifacts