Skip to content

Bump systeminformation from 5.12.13 to 5.23.5 in /test #618

Bump systeminformation from 5.12.13 to 5.23.5 in /test

Bump systeminformation from 5.12.13 to 5.23.5 in /test #618

Workflow file for this run

name: Build - Windows Store
on: [workflow_dispatch, push, pull_request]
env:
TERM: xterm-256color
jobs:
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- name: Build - Windows Store
runs-on: windows-latest
cmake-args: -D CMAKE_SYSTEM_NAME=WindowsStore -D CMAKE_SYSTEM_VERSION=10.0
steps:
- name: Install dependencies
run: choco install curl
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate project
shell: bash
run: |
cmake -S . -B build ${{ matrix.cmake-args }} \
-D CMAKE_BUILD_TYPE=RelWithDebInfo \
-D BUILD_SHARED_LIBS=OFF
- name: Build project
run: cmake --build build --config RelWithDebInfo
- name: Upload build errors
uses: actions/upload-artifact@v4
if: failure()
with:
name: Build Errors - ${{ matrix.name }}
path: |
**/CMakeFiles/CMakeOutput.log
**/CMakeFiles/CMakeError.log
**/Testing/Temporary/LastTest.log
**/*.log
retention-days: 3