Skip to content

Commit

Permalink
Added new Windows CIS script for GitHub actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasBanana committed Aug 4, 2023
1 parent d6d0021 commit d480324
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build Windows

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build_windows:
strategy:
matrix:
generator: [Visual Studio 16 2019, Visual Studio 17 2022]
arch: [Win32, x64]
lib: [Shared, Static]
config: [Debug, Release]
fail-fast: false

runs-on: ${{ matrix.generator == 'Visual Studio 17 2022' && 'windows-latest' || 'windows-2019' }}

steps:
- uses: actions/checkout@v3

- name: Checkout Dependencies
run: git clone https://github.com/LukasBanana/GaussianLib.git

- name: Configure CMake
run: >
cmake -G "${{ matrix.generator }}" -A "${{ matrix.arch }}" -S . -B ${{ github.workspace }}/build
-DLLGL_BUILD_STATIC_LIB=${{ matrix.lib == 'Static' && 'ON' || 'OFF' }}
-DLLGL_BUILD_RENDERER_OPENGL=ON
-DLLGL_BUILD_RENDERER_DIRECT3D11=ON
-DLLGL_BUILD_RENDERER_DIRECT3D12=ON
-DLLGL_BUILD_EXAMPLES=ON
-DLLGL_BUILD_TESTS=ON
-DLLGL_BUILD_WRAPPER_C99=ON
-DGaussLib_INCLUDE_DIR:STRING="GaussianLib/include"
- name: Build
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.config }}

0 comments on commit d480324

Please sign in to comment.