Skip to content

Commit

Permalink
Create cibuild.yml
Browse files Browse the repository at this point in the history
Test for CI build on GH Actions
  • Loading branch information
dahall authored Jan 13, 2025
1 parent f126bab commit ef1022f
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 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: CI Build

on:
push:
branches: [ "master" ]
# pull_request:
# branches: [ "master" ]

env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .\Vanara.sln
SOLUTION_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

permissions:
contents: read

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- name: Add MSBuild to PATH
uses: microsoft/[email protected]

- name: Restore Solution NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /verbosity:quiet /t:restore /p:RunAnalyzersDuringBuild=false /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}

- name: Restore VssApi NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget restore ${{env.SOLUTION_PATH}}\PInvoke\VssApi\Vanara.PInvoke.VssApi.vcxproj -verbosity quiet

- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /verbosity:quiet /t:build /p:RunAnalyzersDuringBuild=false /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}

- name: Build VssApi NuGet package
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget pack ${{env.SOLUTION_PATH}}\PInvoke\VssApi\Vanara.PInvoke.VssApi.nuspec -Verbosity quiet -Symbols -OutputDirectory C:\projects\Vanara\PInvoke\VssApi\bin\Release

- name: Build meta NuGet package
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget pack ${{env.SOLUTION_PATH}}\Vanara.Library.nuspec

0 comments on commit ef1022f

Please sign in to comment.