Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
prasenjeetnath authored Oct 16, 2023
1 parent 7e4e56b commit 9dd7d5a
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Build & Test

on:
push:
pull_request:


jobs:

build:
runs-on: self-hosted

defaults:
run:
working-directory: .

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0


- name: Restore Packages
run: Nuget restore SourceGrid_2013.sln

- name: Build
run: |
echo "MSPATH = ${env:MSPATH}"
${env:MSPATH} -m -t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" /fl SourceGrid_2013.sln
env:
TEST: ${{ secrets.TEST }}
MSPATH: ${{ vars.MSPATH }}


- name: Archive Build Log
uses: actions/upload-artifact@v2
if: ${{ success() || failure() }}
with:
name: Compile_Solution_log
path: |
*.log
- name: Create zip
id: packageBuildResults
run: |
$sourceFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "*"
$outFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "sourcegrid"
New-Item -ItemType Directory -Force -Path $outFolder
$fileName = "sourcegrid-4.0.0.zip"
Write-Host "Filename: '$fileName'"
Write-Host "sourceFolder: '$sourceFolder'"
Write-Host "Outfolder: '$outFolder'"
Write-Host "::set-output name=sourcegrid::$($fileName)"
$outPath = Join-Path $outFolder $fileName
Compress-Archive -DestinationPath $outPath -Path $sourceFolder -CompressionLevel Optimal
- name: Archive Build Output
uses: actions/upload-artifact@v2
with:
name: sourcegrid
path: |
out/sourcegrid


0 comments on commit 9dd7d5a

Please sign in to comment.