Skip to content

tier0/dlmalloc: Fix compilation issues on clang #10

tier0/dlmalloc: Fix compilation issues on clang

tier0/dlmalloc: Fix compilation issues on clang #10

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: vpc.sln
# Configuration type to build.
BUILD_CONFIGURATION: Release
# Build architecture
BUILD_PLATFORM: x64
permissions:
contents: read
jobs:
build:
name: Build VPC
runs-on: windows-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.0.2
- name: Build the app
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform=${{env.BUILD_PLATFORM}} ${{env.SOLUTION_FILE_PATH}}