Skip to content

Commit

Permalink
add submodule checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Aug 28, 2020
1 parent 4104fb6 commit e32d14c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "external/Prism"]
path = external/Prism
url = git@github.com:PrismLibrary/Prism.git
url = https://github.com/PrismLibrary/Prism.git
10 changes: 9 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ stages:
- JDK
- AndroidSDK
steps:
- checkout: self
clean: true
lfs: true
submodules: true

- task: UseDotNet@2
inputs:
packageType: 'sdk'
Expand All @@ -69,6 +74,7 @@ stages:
- task: MSBuild@1
displayName: Build Projects
inputs:
solution: Prism.Container.Extensions.sln
configuration: $(BuildConfiguration)
msbuildArguments: '/p:DebugType=portable /p:JavaSdkDirectory="$(JAVA_HOME)" /restore'

Expand Down Expand Up @@ -131,11 +137,13 @@ stages:
- deployment: NuGet
displayName: NuGet.org
environment: NuGet
condition: and(succeeded(), or(eq(variables['IS_PREVIEW'], true), eq(variables['IS_RELEASE'], true)))
strategy:
runOnce:
deploy:
steps:
- checkout: self
clean: false

- powershell: ./Process-Release.ps1
name: processName
displayName: Process Artifacts for Release
Expand Down

0 comments on commit e32d14c

Please sign in to comment.