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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2020-02-06 15:22:56 +0300
committerGitHub <noreply@github.com>2020-02-06 15:22:56 +0300
commit94d770b7b1d88e1cca45d8a259fc4955680eca80 (patch)
tree9d61714a715a4d69a2a79b1ab2e85c5252350793 /eng/azure-pipelines.yml
parentec876591ca3102629400e2ec912c5a958516967e (diff)
Fix warnings in arcade build (#939)
- Move Mono build out of common arcade template to get rid of missing xunit test results warning. - Use Microsoft copyright for Mono.Linker.csproj, it is required by arcade.
Diffstat (limited to 'eng/azure-pipelines.yml')
-rw-r--r--eng/azure-pipelines.yml33
1 files changed, 16 insertions, 17 deletions
diff --git a/eng/azure-pipelines.yml b/eng/azure-pipelines.yml
index 74a442c31..8051d7b20 100644
--- a/eng/azure-pipelines.yml
+++ b/eng/azure-pipelines.yml
@@ -94,23 +94,6 @@ stages:
displayName: Build illink.sln $(_BuildConfig)
- ${{ if eq(variables.officialBuild, 'false') }}:
- - job: Linux_Mono
- pool:
- name: Hosted Ubuntu 1604
- steps:
- - checkout: self
- submodules: true
- - script: |
- mkdir -p artifacts/log/$(_BuildConfig)
- mono --version | tee artifacts/log/$(_BuildConfig)/mono-version.txt
- make -C monobuild CONFIGURATION=$(_BuildConfig)
- displayName: Build and test
- - task: PublishTestResults@2
- inputs:
- testResultsFormat: 'NUnit'
- testResultsFiles: 'test/Mono.Linker.Tests/TestResults.xml'
-
- - ${{ if eq(variables.officialBuild, 'false') }}:
- job: macOS
pool:
name: Hosted MacOS
@@ -127,6 +110,22 @@ stages:
MSBUILDENSURESTDOUTFORTASKPROCESSES: 1
displayName: Build illink.sln $(_BuildConfig)
+ - ${{ if eq(variables.officialBuild, 'false') }}:
+ - job: Linux_Mono
+ pool:
+ name: Hosted Ubuntu 1604
+ steps:
+ - checkout: self
+ submodules: true
+ - script: |
+ mono --version
+ make -C monobuild CONFIGURATION=$(_BuildConfig)
+ displayName: Build and test
+ - task: PublishTestResults@2
+ inputs:
+ testResultsFormat: 'NUnit'
+ testResultsFiles: 'test/Mono.Linker.Tests/TestResults.xml'
+
# Post-Build Arcade logic
- ${{ if eq(variables.officialBuild, 'true') }}:
- template: /eng/common/templates/post-build/post-build.yml