From 5917800fb91847b16fdb18a3bf528d1d333f6ade Mon Sep 17 00:00:00 2001 From: David Wilson Date: Fri, 6 Jul 2018 11:00:25 -0700 Subject: [PATCH] Add CI_PROVIDER env variable to test tasks --- script/vsts/linux.yml | 1 + script/vsts/macos.yml | 1 + script/vsts/windows.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/script/vsts/linux.yml b/script/vsts/linux.yml index 70831c0a5..8c009b4e0 100644 --- a/script/vsts/linux.yml +++ b/script/vsts/linux.yml @@ -34,6 +34,7 @@ phases: script/test env: CI: true + CI_PROVIDER: VSTS displayName: Run tests # This step is necessary in the short term due to a bug in the *NIX diff --git a/script/vsts/macos.yml b/script/vsts/macos.yml index 5ab483aef..3e7273e44 100644 --- a/script/vsts/macos.yml +++ b/script/vsts/macos.yml @@ -31,6 +31,7 @@ phases: caffeinate -s script/test # Run with caffeinate to prevent screen saver env: CI: true + CI_PROVIDER: VSTS displayName: Run tests # This step is necessary in the short term due to a bug in the *NIX diff --git a/script/vsts/windows.yml b/script/vsts/windows.yml index 195f21b71..410ee0dce 100644 --- a/script/vsts/windows.yml +++ b/script/vsts/windows.yml @@ -36,6 +36,7 @@ phases: - script: script\test.cmd env: CI: true + CI_PROVIDER: VSTS displayName: Run tests - task: CopyFiles@2