Skip to content

Make the other buttons responsive #61

Make the other buttons responsive

Make the other buttons responsive #61

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: C:\vcpkg\installed\
key: ${{ runner.os }}-${{ matrix.platform }}-${{ hashFiles('nas2d-core\InstallVcpkgDeps.bat') }}
- name: Install vcpkg dependencies
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nas2d-core\InstallVcpkgDeps.bat
- 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 /property:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
# msbuild /maxCpuCount /warnAsError /property:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}