diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-07-14 03:34:40 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-07-14 03:34:40 +0200 |
commit | bbc5b5d62dfd66e623494bfc67fc469eae6551c6 (patch) | |
tree | c0d52e7abea8f65b33e1016a31495205eb8b8c1c /.ci/templates/build-testing.yml | |
parent | Merge pull request #2609 from FernandoS27/new-scan (diff) | |
download | yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.tar yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.tar.gz yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.tar.bz2 yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.tar.lz yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.tar.xz yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.tar.zst yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.zip |
Diffstat (limited to '.ci/templates/build-testing.yml')
-rw-r--r-- | .ci/templates/build-testing.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.ci/templates/build-testing.yml b/.ci/templates/build-testing.yml new file mode 100644 index 000000000..101e52996 --- /dev/null +++ b/.ci/templates/build-testing.yml @@ -0,0 +1,30 @@ +jobs: +- job: build_test + displayName: 'testing' + pool: + vmImage: ubuntu-latest + strategy: + maxParallel: 10 + matrix: + windows: + BuildSuffix: 'windows-testing' + ScriptFolder: 'windows' + steps: + - task: PythonScript@0 + condition: eq(variables['Build.Reason'], 'PullRequest') + displayName: 'Determine Testing Status' + inputs: + scriptSource: 'filePath' + scriptPath: '../scripts/merge/check-label-presence.py' + arguments: '$(System.PullRequest.PullRequestNumber) create-testing-build' + - ${{ if eq(variables.enabletesting, 'true') }}: + - template: ./sync-source.yml + parameters: + artifactSource: $(parameters.artifactSource) + needSubmodules: 'true' + - template: ./mergebot.yml + parameters: + matchLabel: 'testing-merge' + - template: ./build-single.yml + parameters: + artifactSource: 'false'
\ No newline at end of file |