Skip to content

Use vcpkg in Manifest mode #15

Use vcpkg in Manifest mode

Use vcpkg in Manifest mode #15

Workflow file for this run

name: MSBuild
on: [push]
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .
# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release
jobs:
build:
strategy:
fail-fast: false
matrix:
platform: [x86, x64]
runs-on: windows-latest
env:
PLATFORM: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Checkout NAS2D
run: git submodule update --init nas2d-core/
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Restore vcpkg dependency cache
uses: actions/cache@v2
id: cache
with:
path: vcpkg_installed
key: ${{ runner.os }}-${{ matrix.platform }}-${{ hashFiles('vcpkg.json') }}
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: |
vcpkg integrate install
msbuild /maxCpuCount /warnAsError /property:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}