Skip to content

chore(deps-dev): Bump picomatch from 2.3.1 to 2.3.2 in /docs/hugo (#464) #3131

chore(deps-dev): Bump picomatch from 2.3.1 to 2.3.2 in /docs/hugo (#464)

chore(deps-dev): Bump picomatch from 2.3.1 to 2.3.2 in /docs/hugo (#464) #3131

name: Build & Test Windows
on:
push:
branches:
- master
pull_request:
## Build ##
jobs:
windows:
name: Build on Windows
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create build folder
run: |
cd ${{ github.workspace }}
mkdir build
- name: Setup build directory cache
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/build
key: build-windows-cache-${{ github.ref }}
- name: Build DPsim
run: |
cd ${{ github.workspace }}
cd build
git describe --tags --abbrev=0 --match "v*"
# TODO: Remove '-DCMAKE_POLICY_VERSION_MINIMUM=3.5' once spdlog version has been bumped
cmake -DWITH_PYBIND=OFF -DCMAKE_POLICY_VERSION_MINIMUM="3.5" ..
cmake --build . --target dpsim --parallel