Update CMake presets and use newer vcpkg baseline #94
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- main | |
name: ci | |
jobs: | |
build_opengl_backend: | |
name: OpenGL | |
runs-on: ${{ matrix.os }} | |
env: | |
FREEIMAGE_VER: 3.18.0 | |
FREEIMAGE_VER_STR: 3180 | |
strategy: | |
fail-fast: false | |
matrix: | |
window_toolkit: [glfw3, sdl2] | |
os: [windows-latest] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@master | |
- name: FreeImage Cache | |
uses: actions/cache@v1 | |
id: freeimage-cache | |
with: | |
path: freeimage | |
key: freeimage-${{ env.FREEIMAGE_VER }} | |
- name: FreeImage Download | |
if: steps.freeimage-cache.outputs.cache-hit != 'true' | |
run: | | |
$url = 'https://nchc.dl.sourceforge.net/project/freeimage/Binary%20Distribution/{0}/FreeImage{1}Win32Win64.zip' -f $env:FREEIMAGE_VER, $env:FREEIMAGE_VER_STR | |
Invoke-WebRequest -Uri $url -OutFile freeimage.zip | |
Expand-Archive .\freeimage.zip -DestinationPath .\ | |
Remove-Item -Path .\freeimage.zip | |
- name: Install Common Dependencies | |
run: | | |
$vcpkg_triplet_path = $env:GITHUB_WORKSPACE + "/CMakeModules/ForgeFreetypeVCPKGTriplet.cmake" | |
Copy-Item -Path $vcpkg_triplet_path -Destination C:/vcpkg/triplets/x64-windows.cmake | |
vcpkg install --triplet x64-windows boost-functional freetype opencl | |
- name: Install GLFW3 | |
if: matrix.window_toolkit == 'glfw3' | |
run: vcpkg install glfw3:x64-windows | |
- name: Install SDL2 | |
if: matrix.window_toolkit == 'sdl2' | |
run: vcpkg install sdl2:x64-windows | |
- name: Configure and Build | |
env: | |
FG_TOOLKIT: ${{ matrix.window_toolkit }} | |
run: | | |
mkdir build && cd build | |
cmake ` | |
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=C:\vcpkg\scripts\buildsystems\vcpkg.cmake ` | |
-DFreeImage_ROOT:PATH=..\freeimage\Dist\x64 ` | |
-DFG_USE_WINDOW_TOOLKIT:STRING=$Env:FG_TOOLKIT .. | |
cmake --build . --parallel --target ALL_BUILD --config Release | |
cmake --build . --parallel --target INSTALL --config Release | |
cpack -G NSIS64 -C Release | |
- name: Upload release binary | |
if: matrix.window_toolkit == 'glfw3' && startsWith(github.ref, 'refs/tags/v') | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
GITHUB_REF: ${{ github.ref }} | |
run: | | |
$tokens = $env:GITHUB_REF -split "/" | |
$tag = $tokens[2] | |
$ver = $tag.substring(1) | |
gh release upload $tag ./build/Forge-$ver.exe --clobber |