-
Couldn't load subscription status.
- Fork 36
Add programmatic Setup support #199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
2b5dffc
9f458db
158754c
0883b4e
70c798d
5ec649b
c5e43ca
319e264
aaaa44a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,14 @@ | ||
| parameters: | ||
| name: '' | ||
| displayName: '' | ||
| vmImage: '' | ||
| scriptFileName: '' | ||
| scriptArgs: 'all' | ||
| timeoutInMinutes: 120 | ||
|
|
||
| jobs: | ||
| - job: ${{ parameters.name }} | ||
| displayName: ${{ parameters.displayName }} | ||
| timeoutInMinutes: ${{ parameters.timeoutInMinutes }} | ||
| pool: | ||
| vmImage: ${{ parameters.vmImage }} | ||
|
|
@@ -15,6 +17,15 @@ jobs: | |
| clean: false # whether to fetch clean each time | ||
| submodules: recursive # set to 'true' for a single level of submodules or 'recursive' to get submodules of submodules | ||
| persistCredentials: true | ||
| - task: UseDotNet@2 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LGTM |
||
| displayName: 'Use .NET 5 SDK 5.0.101' | ||
| inputs: | ||
| version: 5.0.101 | ||
| - task: UseDotNet@2 | ||
| displayName: 'Use .NET Core Runtime 3.1.10' | ||
| inputs: | ||
| packageType: runtime | ||
| version: 3.1.10 | ||
| # Linux or macOS | ||
| - task: Bash@3 | ||
| displayName: Linux / OSX Build | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,9 +14,18 @@ pr: | |
| include: [ dev, master ] # branch names which will trigger a build | ||
|
|
||
| jobs: | ||
| - template: azure-pipeline.template.yaml | ||
| parameters: | ||
| name: Ubuntu | ||
| vmImage: 'ubuntu-16.04' | ||
| scriptFileName: ./build.sh | ||
| scriptArgs: all | ||
| - template: azure-pipeline.template.yaml | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LGTM |
||
| parameters: | ||
| name: 'net_core_tests_linux' | ||
| displayName: '.NET Core Unit Tests (Linux)' | ||
| vmImage: 'ubuntu-18.04' | ||
| scriptFileName: ./build.sh | ||
| scriptArgs: runTestsNetCore | ||
|
|
||
| - template: azure-pipeline.template.yaml | ||
| parameters: | ||
| name: 'net_5_tests_linux' | ||
| displayName: '.NET 5 Unit Tests (Linux)' | ||
| vmImage: 'ubuntu-18.04' | ||
| scriptFileName: ./build.sh | ||
| scriptArgs: runTestsNet | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,9 +14,36 @@ pr: | |
| name: $(Year:yyyy).$(Month).$(DayOfMonth)$(Rev:.r) | ||
|
|
||
| jobs: | ||
| - template: azure-pipeline.template.yaml | ||
| parameters: | ||
| name: Windows | ||
| vmImage: 'vs2017-win2016' | ||
| scriptFileName: build.cmd | ||
| scriptArgs: all | ||
| - template: azure-pipeline.template.yaml | ||
| parameters: | ||
| name: 'netfx_tests_windows' | ||
| displayName: '.NET Framework Unit Tests (Windows)' | ||
| vmImage: 'windows-2019' | ||
| scriptFileName: build.cmd | ||
| scriptArgs: runTests | ||
|
|
||
| - template: azure-pipeline.template.yaml | ||
| parameters: | ||
| name: 'net_core_tests_windows' | ||
| displayName: '.NET Core Unit Tests (Windows)' | ||
| vmImage: 'windows-2019' | ||
| scriptFileName: build.cmd | ||
| scriptArgs: runTestsNetCore | ||
|
|
||
| - template: azure-pipeline.template.yaml | ||
| parameters: | ||
| name: 'net_5_tests_windows' | ||
| displayName: '.NET 5 Unit Tests (Windows)' | ||
| vmImage: 'windows-2019' | ||
| scriptFileName: build.cmd | ||
| scriptArgs: runTestsNet | ||
|
|
||
| - template: azure-pipeline.template.yaml | ||
| parameters: | ||
| name: 'nuget_pack' | ||
| displayName: 'NuGet Pack' | ||
| vmImage: 'windows-2019' | ||
| scriptFileName: build.cmd | ||
| scriptArgs: CreateNuget nugetprerelease=dev | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LGTM |
||
| outputDirectory: 'bin/nuget' | ||
| artifactName: 'nuget_pack-$(Build.BuildId)' | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need some more examples:
Also need to explain that you still need to set the mongodb plugin in
akka.persistence.journalandakka.persistence.snapshot-storein HOCON even with these settings passed in.