Skip to content

Commit

Permalink
added yml
Browse files Browse the repository at this point in the history
  • Loading branch information
francisgauthier1 committed Dec 7, 2023
1 parent 308d9e2 commit 3d69a9c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Pull Requests

pool:
name: Azure Pipelines

trigger: none

variables:
buildConfiguration: Release

stages:
- stage: BuildTestStage
displayName: 'Building the project and run tests'
jobs:
- job: BuildTestJob
displayName: 'Building the project and run tests'
steps:
- task: DotNetCoreCLI@2
displayName: 'Restore nuget packages'
inputs:
command: restore
feedsToUse: select
feedRestore: 'Savia 2.0/Copibec.Savia.Etl'

- task: DotNetCoreCLI@2
displayName: 'Compile all projects'
inputs:
command: build
arguments: '--configuration ${{ parameters.buildConfiguration }} --no-restore'

0 comments on commit 3d69a9c

Please sign in to comment.