-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate pipelines for OSS Gadget and Multiextractor (#96)
* Separate pipelines for OSS Gadget and Multiextractor Fix #94
- Loading branch information
Showing
42 changed files
with
366 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
parameters: | ||
projects: [] | ||
|
||
steps: | ||
- ${{ each project in parameters.projects}}: | ||
- task: DotNetCoreCLI@2 | ||
displayName: ${{ project}} - Dotnet Publish Linux x64 | ||
inputs: | ||
command: 'publish' | ||
arguments: '-c $(BuildConfiguration) -o $(Build.BinariesDirectory)/linux/OSSGadget_$(ReleaseVersion)/${{ project }} -r linux-x64' | ||
publishWebProjects: false | ||
zipAfterPublish: false | ||
workingDirectory: $(SolutionDirectory)/${{ project }} | ||
- task: DotNetCoreCLI@2 | ||
displayName: ${{ project}} - Dotnet Publish MacOS x64 | ||
inputs: | ||
command: 'publish' | ||
arguments: '-c $(BuildConfiguration) -o $(Build.BinariesDirectory)/macos/OSSGadget_$(ReleaseVersion)/${{ project }} -r osx-x64' | ||
publishWebProjects: false | ||
zipAfterPublish: false | ||
workingDirectory: $(SolutionDirectory)/${{ project }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
parameters: | ||
projects: [] | ||
|
||
steps: | ||
- ${{ each project in parameters.projects}}: | ||
- task: DotNetCoreCLI@2 | ||
displayName: ${{ project}} - Dotnet Publish Windows x64 | ||
inputs: | ||
command: 'publish' | ||
arguments: '-c $(BuildConfiguration) -o $(Build.BinariesDirectory)\win-x64\OSSGadget_$(ReleaseVersion)\${{ project }} -r win-x64' | ||
publishWebProjects: false | ||
zipAfterPublish: false | ||
workingDirectory: $(SolutionDirectory)/${{ project }} | ||
- task: DotNetCoreCLI@2 | ||
displayName: ${{ project}} - Dotnet Build .NET Core App | ||
inputs: | ||
command: 'build' | ||
arguments: '-c $(BuildConfiguration) -o $(Build.BinariesDirectory)\netcoreapp\OSSGadget_$(ReleaseVersion)\${{ project }}' | ||
publishWebProjects: false | ||
zipAfterPublish: false | ||
workingDirectory: $(SolutionDirectory)/${{ project }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.