diff --git a/build-system/linux-pr-validation.yaml b/build-system/linux-pr-validation.yaml deleted file mode 100644 index 61f748e4..00000000 --- a/build-system/linux-pr-validation.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Pull request validation for Linux against the `dev` and `master` branches -# See https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema for reference -trigger: - branches: - include: - - dev - - master - -name: $(Year:yyyy).$(Month).$(DayOfMonth)$(Rev:.r) - -pr: - autoCancel: true # indicates whether additional pushes to a PR should cancel in-progress runs for the same PR. Defaults to true - branches: - 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 \ No newline at end of file diff --git a/build-system/windows-pr-validation.yaml b/build-system/windows-pr-validation.yaml index 0b50b03e..5f14abd4 100644 --- a/build-system/windows-pr-validation.yaml +++ b/build-system/windows-pr-validation.yaml @@ -19,4 +19,11 @@ jobs: name: Windows vmImage: 'windows-2019' scriptFileName: build.cmd - scriptArgs: all \ No newline at end of file + scriptArgs: all +- template: azure-pipeline.template.yaml + parameters: + name: 'linux_pr' + displayName: 'Linux PR Validation' + vmImage: 'ubuntu-18.04' + scriptFileName: ./build.sh + scriptArgs: all