Skip to content

Update msbuild.yml

Update msbuild.yml #25

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: MSBuild
on:
push:
branches: [ "feature_ooapi" ]
pull_request:
branches: [ "feature_ooapi" ]
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: ./Builds/MsVc2022.win/OdbcFb.sln
# 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
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Install html-help-workshop, sed, innosetup
run: |
choco install html-help-workshop
choco install sed
choco install innosetup
- name: Restore NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
- name: Stub
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
#env
echo ${env.PROGRAMFILES}
#cd ${env.PROGRAMFILES}
#dir
echo ${env.ProgramFiles(x86)}
#cd ${env.ProgramFiles(x86)}
#dir
- name: Build win32
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: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform=Win32 ${{env.SOLUTION_FILE_PATH}}
- name: Build x64
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: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform=x64 ${{env.SOLUTION_FILE_PATH}}
- name: Build InnoSetup installers
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
cd Install\Win32
dir
./MakePackage.bat