Skip to content

Merge branch 'master' of https://github.com/UTengine/KnightOnline #1

Merge branch 'master' of https://github.com/UTengine/KnightOnline

Merge branch 'master' of https://github.com/UTengine/KnightOnline #1

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 client
on:
push:
branches:
- master
paths:
- '.github/workflows/build_client.yml'
pull_request:
branches:
- master
paths:
- '.github/workflows/build_client.yml'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
BUILD_CONFIGURATION: [Debug, Release]
BUILD_PLATFORM: [Win32]
name: "Client: ${{ matrix.BUILD_CONFIGURATION }} - ${{ matrix.BUILD_PLATFORM }}"
steps:
- uses: actions/checkout@v4
with:
submodules: 'false'
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Build client
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /p:Configuration="${{matrix.BUILD_CONFIGURATION}}" /p:Platform="${{matrix.BUILD_PLATFORM}}" /p:NO_CLIENT_ASSETS="1" Client.sln