Skip to content

Commit

Permalink
add .net framework worklfow
Browse files Browse the repository at this point in the history
  • Loading branch information
yazeed-obaid committed Jul 21, 2020
1 parent cf93088 commit cd69528
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

on:
push:
branches: [ master ]
branches: [ master, migrate-to-github-actions ]
pull_request:
branches: [ master ]

Expand All @@ -14,34 +14,58 @@ env:
# Project name to pack and publish
PROJECT_NAME: DynamicsCRMProvider

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
# This workflow contains a two jobs called "windows" and "mono"
windows:

# The type of runner that the job will run on
runs-on: windows-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Setup .net core
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101

# Build project using a specific script
- name: Build
shell: cmd
run: call .\build.cmd

# Publish artifacts resulted from build
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: DLL Build Result
path: ./.fake/*.dll
mono:

# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Setup .net core
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101

# Build project using a specific script
- name: Build
shell: bash
run: |
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/dotnet-framework.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: dotnet-framework

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master,migrate-to-github-actions ]
pull_request:
branches: [ master ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Setup MSBuild
- name: setup MSBuild
uses: microsoft/setup-msbuild@v1

# Setup Nuget
- name: Setup NuGet
uses: NuGet/[email protected]

# Restore Nuget packages for project
- name: Restore Packages
run: nuget restore DynamicsCRMProvider.sln

# Build project using a specific script
- name: Build
shell: cmd
run: call .\build.cmd

# Publish artifacts resulted from build
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: DLL Build Result
path: ./bin/*.dll

0 comments on commit cd69528

Please sign in to comment.