Merge branch 'master' into develop
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled

This commit is contained in:
KimLS
2026-04-28 20:39:33 -07:00
+8 -7
View File
@@ -5,7 +5,6 @@ on:
- master - master
- develop - develop
pull_request: pull_request:
jobs: jobs:
linux: linux:
name: Linux name: Linux
@@ -30,7 +29,7 @@ jobs:
uses: actions/cache@v5 uses: actions/cache@v5
with: with:
path: | path: |
vcpkg_installed build/vcpkg_installed
submodules/vcpkg/downloads submodules/vcpkg/downloads
key: ${{ runner.os }}-vcpkg-${{ hashFiles('vcpkg.json') }} key: ${{ runner.os }}-vcpkg-${{ hashFiles('vcpkg.json') }}
restore-keys: | restore-keys: |
@@ -59,6 +58,9 @@ jobs:
windows: windows:
name: Windows name: Windows
runs-on: windows-latest runs-on: windows-latest
env:
VCPKG_DOWNLOADS: ${{ github.workspace }}\submodules\vcpkg\downloads
VCPKG_BINARY_SOURCES: 'clear;files,${{ github.workspace }}\vcpkg_archives,readwrite'
steps: steps:
- name: Checkout source - name: Checkout source
uses: actions/checkout@v5 uses: actions/checkout@v5
@@ -67,9 +69,9 @@ jobs:
- name: Enable long paths - name: Enable long paths
run: git config --global core.longpaths true run: git config --global core.longpaths true
- name: Setup MSVC environment - name: Setup MSVC environment
uses: ilammy/msvc-dev-cmd@v1 uses: TheMrMilchmann/setup-msvc-dev@v4
with: with:
arch: x64 arch: x64
@@ -77,11 +79,10 @@ jobs:
uses: actions/cache@v5 uses: actions/cache@v5
with: with:
path: | path: |
vcpkg_installed ${{ env.VCPKG_DOWNLOADS }}
submodules/vcpkg/downloads ${{ github.workspace }}/vcpkg_archives
key: ${{ runner.os }}-vcpkg-${{ hashFiles('vcpkg.json') }} key: ${{ runner.os }}-vcpkg-${{ hashFiles('vcpkg.json') }}
restore-keys: | restore-keys: |
${{ runner.os }}-vcpkg-${{ hashFiles('vcpkg.json') }}-
${{ runner.os }}-vcpkg- ${{ runner.os }}-vcpkg-
- name: Configure - name: Configure