From f38279ab6f6c0696094300d498d7955ad6dbd910 Mon Sep 17 00:00:00 2001 From: Jeremy Koritzinsky Date: Wed, 4 Jan 2023 16:15:58 -0800 Subject: [PATCH] Create basic YAML template for the pipeline for building and running the runtime with native sanitizers enabled. Add a basic template for the YAML so we can at least get the pipeline created. I'll get the pipeline working in https://github.com/dotnet/runtime/pull/74623 --- eng/pipelines/runtime-sanitized.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 eng/pipelines/runtime-sanitized.yml diff --git a/eng/pipelines/runtime-sanitized.yml b/eng/pipelines/runtime-sanitized.yml new file mode 100644 index 0000000000000..32023c6fa9f12 --- /dev/null +++ b/eng/pipelines/runtime-sanitized.yml @@ -0,0 +1,14 @@ +# This pipeline provides an easy mechanism for us to run runtime and libaries tests with native sanitizers enabled +# without having to compilcate the runtime.yml pipeline. This pipeline is intended to be run on a rolling basis +# but a schedule is yet to be determined. +trigger: none + +variables: + - template: /eng/pipelines/common/variables.yml + +extends: + template: /eng/pipelines/common/templates/pipeline-with-resources.yml + parameters: + stages: + - stage: Build + jobs: