summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/windows.yml
blob: b66e827a677c78e1a28dc3700246ab58b5c03834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Windows

on: [push, pull_request]

jobs:
  build:
    runs-on: windows-latest
    strategy:
      fail-fast: false
      max-parallel: 1
      matrix:
        compiler: [mingw-w64, msvc16]
        bits: [32, 64]
        include:
        - compiler: mingw-w64
          bits: 32
          CFLAGS: -m64
        - compiler: mingw-w64
          bits: 64
          CFLAGS: -m64
        - compiler: msvc16
          bits: 32
          ARCH: "x86"  
        - compiler: msvc16
          bits: 64
          ARCH: "x64" 
          
    env:
      CFLAGS: ${{ matrix.CFLAGS }}

    steps:
    - name: Checkout
      uses: actions/checkout@master

    - name: Setup Environment
      run: | 
        dir
        mkdir build
        cd build
        mkdir raylib_3.1_win${{ matrix.bits }}
        cd raylib_3.1_win${{ matrix.bits }}
        mkdir include
        mkdir lib-${{ matrix.compiler }}
        dir
        cd ../../../raylib
        dir

    # Setup MSBuild.exe path if required
    - name: Setup MSBuild
      uses: microsoft/[email protected]
      if: matrix.compiler == 'msvc16'
   
    - name: Build Library (MinGW-w64)
      run: |
        cd src
        make PLATFORM=PLATFORM_DESKTOP CC=gcc RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/raylib_3.1_win${{ matrix.bits }}/lib-mingw-w64"
        make SHELL=cmd clean
        make PLATFORM=PLATFORM_DESKTOP CC=gcc RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/raylib_3.1_win${{ matrix.bits }}/lib-mingw-w64"
        cd ..
      if: matrix.compiler == 'mingw-w64'
      
    - name: Build Library (MSVC16)
      run: |
        cd projects/VS2017
        msbuild.exe raylib.sln /target:raylib /p:OutputPath="..\..\build\raylib_3.1_win${{ matrix.bits }}/lib-msvc16 /property:Configuration=Release /property:Platform=${{ matrix.ARCH }}
        msbuild.exe raylib.sln /target:raylib /p:OutputPath="..\..\build\raylib_3.1_win${{ matrix.bits }}/lib-msvc16 /property:Configuration=Release.DLL /property:Platform=${{ matrix.ARCH }}
        cd ../..
      if: matrix.compiler == 'msvc16'
      
    - name: Generate Artifacts
      run: |
        cd ..
        copy /Y src/raylib.h ../../build/raylib_3.1_win${{ matrix.bits }}/include
        cd ../build
        zip raylib_3.1_win${{ matrix.bits }}.zip raylib_3.1_win${{ matrix.bits }}
        
    - name: Upload Artifacts
      uses: actions/upload-artifact@v2
      with:
        name: raylib_3.1_win${{ matrix.bits }}.zip
        path: raylib_3.1_win${{ matrix.bits }}.zip