summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorRay <[email protected]>2020-08-20 12:21:38 +0200
committerGitHub <[email protected]>2020-08-20 12:21:38 +0200
commitd43514a44d918705475f706abdefb144959db6c3 (patch)
treed47bb429eef14061efa0f9dd3677ba9be62b3a78 /.github
parent600d7b524d8e2de88f003c2f4ef7e964afc2bc5d (diff)
downloadraylib-d43514a44d918705475f706abdefb144959db6c3.tar.gz
raylib-d43514a44d918705475f706abdefb144959db6c3.zip
Update windows.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 95b209ae..b7b9ab07 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -23,7 +23,7 @@ jobs:
- compiler: mingw-w64
bits: 64
ARCH: "x64"
- COMPILER_PATH: "C:\\msys64\\mingw64\\bin"
+ COMPILER_PATH: "C:/msys64/mingw64/bin"
- compiler: msvc16
bits: 32
ARCH: "x86"
@@ -60,9 +60,9 @@ jobs:
- name: Build Library (MinGW-w64)
run: |
cd src
- ${{ matrix.COMPILER_PATH }}/gcc -v
- make PLATFORM=PLATFORM_DESKTOP CC="${{ matrix.COMPILER_PATH }}/gcc" RAYLIB_BUILD_ARCH=${{ matrix.ARCH }} RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib"
- make PLATFORM=PLATFORM_DESKTOP CC="${{ matrix.COMPILER_PATH }}/gcc" RAYLIB_BUILD_ARCH=${{ matrix.ARCH }} RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" -B
+ ${{ matrix.COMPILER_PATH }}/i686-w64-mingw32-gcc.exe -v
+ ${{ matrix.COMPILER_PATH }}/mingw32-make PLATFORM=PLATFORM_DESKTOP CC="${{ matrix.COMPILER_PATH }}/i686-w64-mingw32-gcc.exe" RAYLIB_BUILD_ARCH=${{ matrix.ARCH }} RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib"
+ ${{ matrix.COMPILER_PATH }}/mingw32-make PLATFORM=PLATFORM_DESKTOP CC="${{ matrix.COMPILER_PATH }}/i686-w64-mingw32-gcc.exe" RAYLIB_BUILD_ARCH=${{ matrix.ARCH }} RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" -B
cd ..
shell: cmd
if: matrix.compiler == 'mingw-w64' && matrix.bits == 32