feat(ci): add Ninja installation step for Windows in CI and release workflows

- Introduced a step to install Ninja for Windows runners in both CI and release workflows, enhancing build efficiency.
- This addition ensures that the necessary build tools are available for Windows environments, streamlining the setup process.

Benefits:
- Improves the build process on Windows by ensuring Ninja is installed, leading to faster and more reliable builds.
This commit is contained in:
scawful
2025-10-15 01:06:44 -04:00
parent 5502b5246a
commit e2bee5b3ba
2 changed files with 8 additions and 0 deletions

View File

@@ -68,6 +68,10 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Ninja (Windows)
if: runner.os == 'Windows'
uses: seanmiddleditch/gha-setup-ninja@v1
- name: Set up vcpkg (Windows)
if: runner.os == 'Windows'

View File

@@ -143,6 +143,10 @@ jobs:
with:
submodules: recursive
- name: "Install Ninja (Windows only)"
if: runner.os == 'Windows'
uses: seanmiddleditch/gha-setup-ninja@v1
- name: "Set up vcpkg (Windows only)"
if: runner.os == 'Windows'
uses: lukka/run-vcpkg@v11