Skip to content

Commit

Permalink
Started uploading binaries as artifacts in CI scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasBanana committed Aug 11, 2023
1 parent 73788f6 commit 9c554f2
Showing 1 changed file with 21 additions and 11 deletions.
32 changes: 21 additions & 11 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,41 @@ jobs:
strategy:
matrix:
generator: [Visual Studio 16 2019, Visual Studio 17 2022]
arch: [Win32, x64]
lib: [Shared, Static]
config: [Debug, Release]
arch: [x64]
lib: [Shared]
config: [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
uses: actions/checkout@v3
with:
name: Dependecy GaussianLib
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_RENDERER_OPENGL=OFF
-DLLGL_BUILD_RENDERER_DIRECT3D11=OFF
-DLLGL_BUILD_RENDERER_DIRECT3D12=OFF
-DLLGL_BUILD_EXAMPLES=ON
-DLLGL_BUILD_TESTS=ON
-DLLGL_BUILD_WRAPPER_C99=ON
-DLLGL_BUILD_WRAPPER_C99=OFF
-DGaussLib_INCLUDE_DIR:STRING="GaussianLib/include"
- name: Build
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.config }}


- name: Upload Binaries
uses: actions/upload-artifact@v3
if: matrix.generator == 'Visual Studio 17 2022'
with:
name: windows-binaries
path: |
${{ github.workspace }}/build/build/Release/LLGL*.dll
${{ github.workspace }}/build/build/Release/Example_*.exe
${{ github.workspace }}/build/build/Release/Testbed.exe

0 comments on commit 9c554f2

Please sign in to comment.