raylib/.github/workflows/ci_src_examples_win.yml

52 lines
1.3 KiB
YAML
Raw Normal View History

2020-01-09 18:06:17 +03:00
name: CI - Source & Examples - Windows
2020-01-09 19:27:03 +03:00
on: [push, pull_request]
2020-01-09 18:06:17 +03:00
jobs:
build:
runs-on: windows-latest
2020-01-10 17:52:33 +03:00
strategy:
2020-01-10 18:13:41 +03:00
fail-fast: false
2020-01-10 18:09:45 +03:00
max-parallel: 1
2020-01-10 17:52:33 +03:00
matrix:
compiler: [mingw, msvc16]
bits: [32, 64]
include:
- compiler: mingw
bits: 32
CFLAGS: -m32
GENERATOR: "MinGW Makefiles"
- compiler: mingw
bits: 64
CFLAGS: -m64
GENERATOR: "MinGW Makefiles"
- compiler: msvc16
bits: 32
GENERATOR: "Visual Studio 16 2019"
2020-01-10 18:37:23 +03:00
ARCH: "-A Win32"
2020-01-10 17:52:33 +03:00
- compiler: msvc16
bits: 64
2020-01-10 18:37:23 +03:00
GENERATOR: "Visual Studio 16 2019"
ARCH: "-A x64"
2020-01-10 18:04:04 +03:00
env:
CFLAGS: ${{ matrix.CFLAGS }}
2020-01-10 17:52:33 +03:00
2020-01-09 18:06:17 +03:00
steps:
2020-01-10 17:52:33 +03:00
- name: Checkout
uses: actions/checkout@master
2020-01-09 18:55:12 +03:00
- name: Setup Environment
2020-01-09 19:06:34 +03:00
run: |
mkdir build
2020-01-09 19:27:03 +03:00
cd build
2020-01-10 17:52:33 +03:00
2020-01-10 12:56:53 +03:00
- name: Setup MSBuild.exe
uses: warrenbuckley/Setup-MSBuild@v1
2020-01-10 17:52:33 +03:00
2020-01-09 18:50:01 +03:00
- name: Setup CMake Project
2020-01-10 18:37:23 +03:00
run: cmake -G "${{ matrix.GENERATOR }}" ${{ matrix.ARCH }} -DCMAKE_SH="CMAKE_SH-NOTFOUND" -DSTATIC=ON -DSHARED=ON -DBUILD_EXAMPLES=ON -DBUILD_GAMES=OFF -DINCLUDE_EVERYTHING=ON ../raylib
2020-01-10 17:52:33 +03:00
2020-01-09 18:50:01 +03:00
- name: Build raylib Source & Examples
run: cmake --build . --target install