Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-27 03:07:31 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-27 03:07:31 +0300
commit4398a12286f2645d2e3257a60f0e4d2a8316bf99 (patch)
treeb7dcbcb657b4574a54a87ad1f84e58cadec34767 /scripts
parenta3fda4a3cb747ace7c4a705f98d92ec4930ec413 (diff)
[netcore] Fix name of empty.proj in AzDO pipeline
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ci/pipeline-netcore-runtime.yml12
1 files changed, 5 insertions, 7 deletions
diff --git a/scripts/ci/pipeline-netcore-runtime.yml b/scripts/ci/pipeline-netcore-runtime.yml
index 8063a99441b..af063f8afb0 100644
--- a/scripts/ci/pipeline-netcore-runtime.yml
+++ b/scripts/ci/pipeline-netcore-runtime.yml
@@ -14,9 +14,6 @@ variables:
# Variables used to publish packages to blob feed
- name: dotnetFeedUrl
value: https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json
- # Variables used by arcade to gather asset manifests
- - name: _DotNetPublishToBlobFeed
- value: true
stages:
- stage: build
@@ -40,6 +37,7 @@ stages:
x64:
poolname: Hosted Ubuntu 1604
manifest: linux-x64
+ prepareDependencies: true
ARM64:
manifest: linux-arm64
${{ if eq(variables['System.TeamProject'], 'public') }}:
@@ -58,7 +56,7 @@ stages:
sudo apt update
sudo apt -y install nuget libgdiplus build-essential libtool libtool-bin cmake gettext bc
displayName: 'Prepare Linux dependencies'
- condition: eq(variables['poolname'], 'Hosted Ubuntu 1604')
+ condition: eq(variables['prepareDependencies'], 'true')
- bash: |
sed -i "s#git://github.com/#https://dn-bot:${dncengPat}@dev.azure.com/dnceng/internal/_git/#; s#\.git\$##; s#\(url = .*\)/\(.*\)#\1-\2#" .gitmodules
@@ -112,7 +110,7 @@ stages:
timeoutInMinutes: 90
condition: eq(variables['System.TeamProject'], 'public')
- - script: ./eng/common/build.sh /p:DotNetPublishToBlobFeed=true --ci --restore --projects $(Build.SourcesDirectory)/eng/empty.csproj
+ - script: ./eng/common/build.sh /p:DotNetPublishToBlobFeed=true --ci --restore --projects $(Build.SourcesDirectory)/eng/empty.proj
displayName: Restore blob feed tasks
condition: and(ne(variables['System.TeamProject'], 'public'), ne(variables['Build.Reason'], 'PullRequest'))
@@ -192,7 +190,7 @@ stages:
timeoutInMinutes: 90
condition: eq(variables['System.TeamProject'], 'public')
- - script: ./eng/common/build.sh /p:DotNetPublishToBlobFeed=true --ci --restore --projects $(Build.SourcesDirectory)/eng/empty.csproj
+ - script: ./eng/common/build.sh /p:DotNetPublishToBlobFeed=true --ci --restore --projects $(Build.SourcesDirectory)/eng/empty.proj
displayName: Restore blob feed tasks
condition: and(ne(variables['System.TeamProject'], 'public'), ne(variables['Build.Reason'], 'PullRequest'))
@@ -246,7 +244,7 @@ stages:
env:
CHERE_INVOKING: yes
- - powershell: eng\common\build.ps1 /p:DotNetPublishToBlobFeed=true -ci -restore -projects $(Build.SourcesDirectory)\eng\empty.csproj
+ - powershell: eng\common\build.ps1 /p:DotNetPublishToBlobFeed=true -ci -restore -projects $(Build.SourcesDirectory)\eng\empty.proj
displayName: Restore blob feed tasks
condition: and(ne(variables['System.TeamProject'], 'public'), ne(variables['Build.Reason'], 'PullRequest'))