Skip to content

Update Installation.md #1

Update Installation.md

Update Installation.md #1

Workflow file for this run

name: Build-and-Test-MSVC-Windows
on:
workflow_dispatch:
push:
branches:
- main
- dev
jobs:
Build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
msvc: [2022]
build_type: [Debug, Release]
std: [20]
steps:
- uses: actions/checkout@v4
- name: Append the directory of 'vcvarsall.bat' to PATH environment variable
uses: myci-actions/export-env-var-powershell@1
with:
name: PATH
value: $env:PATH;C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build
- name: Configure CMake
working-directory: ./
run: |
cmake -S . -B ./Build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DDEV="TRUE" -DJSONIFIER_TEST=true
- name: Build the Test
working-directory: ./Build
run: |
cmake --build . --config=${{matrix.build_type}}
- name: Install the Test
working-directory: ./Build
run: |
cmake --install . --config=${{matrix.build_type}}
- name: Run the Test
working-directory: C:/Program Files (x86)/Jsonifier/bin/
run: |
./Json-Performance.exe
continue-on-error: true