[FIX]: Window Build Fix
This commit is contained in:
21
.github/workflows/ci.yaml
vendored
21
.github/workflows/ci.yaml
vendored
@ -18,6 +18,7 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target: [x64-linux]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
@ -29,3 +30,23 @@ jobs:
|
||||
|
||||
- name: Build
|
||||
run: cmake --build --preset ${{ matrix.target }} --config Release
|
||||
|
||||
build-windows:
|
||||
runs-on: windows-latest
|
||||
permissions:
|
||||
contents: read
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target: [x64-windows]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: ilammy/msvc-dev-cmd@v1
|
||||
|
||||
- name: Configure
|
||||
run: cmake --preset ${{ matrix.target }}
|
||||
|
||||
- name: Build
|
||||
run: cmake --build --preset ${{ matrix.target }} --config Release
|
||||
Reference in New Issue
Block a user