Skip to content

Bump actions/cache from 3.3.2 to 3.3.3 #298

Bump actions/cache from 3.3.2 to 3.3.3

Bump actions/cache from 3.3.2 to 3.3.3 #298

Workflow file for this run

name: 'Windows MSVC'
env:
CMAKE_VERSION: '3.16.x'
CMAKE_BUILD_TYPE: 'Release'
CMAKE_BUILD_PREFIX: './build'
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
name: '🚧 🟨 MSVC'
steps:
- name: '🧰 Checkout'
uses: actions/[email protected]
- name: '🟨 Setup CMake'
uses: jwlawson/[email protected]
with:
cmake-version: '${{env.CMAKE_VERSION}}'
github-api-token: ${{ secrets.GITHUB_TOKEN }}
- name: '🟨 Setup Visual Studio'
uses: ilammy/[email protected]
- name: '${{ matrix.icon }} Cache ROOT'
uses: actions/[email protected]
with:
path: '${{ env.CMAKE_BUILD_PREFIX }}/_deps/root-build'
key: 'root'
- name: '🔧 Configure'
run: cmake -S ${{ github.workspace }} -B ${{ env.CMAKE_BUILD_PREFIX }} -Thost=x64
- name: '⚙️ Build'
run: cmake --build ${{ env.CMAKE_BUILD_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }} --parallel 2
- name: '🧪 Run tests'
working-directory: ${{ env.CMAKE_BUILD_PREFIX }}
run: ctest -C ${{ env.CMAKE_BUILD_TYPE }} -j2 -VV --output-on-failure