Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Marko19907/OLEDShift
Browse files Browse the repository at this point in the history
  • Loading branch information
Marko19907 committed Jun 12, 2023
2 parents 5c2b019 + 8fd4218 commit f931dc7
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# 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: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_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

jobs:
build:
runs-on: windows-latest

strategy:
matrix:
platform: [
'ARM',
'x64',
'x86'
]

steps:
- name: ⬇ Checkout repo
uses: actions/checkout@v3

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

- name: 📦 Restore NuGet packages
working-directory: ${{ env.GITHUB_WORKSPACE }}
run: nuget restore ${{ env.SOLUTION_FILE_PATH }}

- name: 👷 Build
working-directory: ${{ env.GITHUB_WORKSPACE }}
# Add additional options to the MSBuild command line here (like verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{ env.BUILD_CONFIGURATION }} /p:Platform=${{ matrix.platform }} ${{ env.SOLUTION_FILE_PATH }}

- name: 📤 Upload artifact
uses: actions/upload-artifact@v3
with:
name: build-${{ matrix.platform }}
path: |
${{ github.workspace }}/**/*.exe

0 comments on commit f931dc7

Please sign in to comment.