From e375d9dacbfd174a421fe36c5124197bf2dfe6a8 Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Mon, 18 Mar 2019 14:29:41 -0700 Subject: [PATCH 1/3] add config for poshchan --- .poshchan/config.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .poshchan/config.json diff --git a/.poshchan/config.json b/.poshchan/config.json new file mode 100644 index 00000000000..c93d6caca72 --- /dev/null +++ b/.poshchan/config.json @@ -0,0 +1,16 @@ +{ + "build_targets": { + "linux": "Project_CI_Linux", + "macos": "Project_CI_macOS", + "windows": "Project_CI_windows", + "staging": "PowerShell-CI-static-analysis" + }, + "authorized_users": [ + "SteveL-MSFT", + "TravisEz13", + "anmenaga", + "daxian-dbw", + "adityapatwardhan", + "iSazonov" + ] +} From 9b229c13ad02c377ec60f7664606b923983b4bce Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Mon, 18 Mar 2019 14:42:17 -0700 Subject: [PATCH 2/3] rename from config to settings.json --- .poshchan/{config.json => settings.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .poshchan/{config.json => settings.json} (100%) diff --git a/.poshchan/config.json b/.poshchan/settings.json similarity index 100% rename from .poshchan/config.json rename to .poshchan/settings.json From 2e484bfd9bef571ca7e4c2ea0296cb08b4c9e27c Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Mon, 18 Mar 2019 15:10:51 -0700 Subject: [PATCH 3/3] address Aditya's feedback --- .poshchan/settings.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.poshchan/settings.json b/.poshchan/settings.json index c93d6caca72..df783aee628 100644 --- a/.poshchan/settings.json +++ b/.poshchan/settings.json @@ -1,9 +1,15 @@ { "build_targets": { - "linux": "Project_CI_Linux", - "macos": "Project_CI_macOS", + "staging": "PowerShell-CI-static-analysis", "windows": "Project_CI_windows", - "staging": "PowerShell-CI-static-analysis" + "macos": "Project_CI_macOS", + "linux": "Project_CI_Linux", + "all": [ + "PowerShell-CI-static-analysis", + "Project_CI_windows", + "Project_CI_macOS", + "Project_CI_Linux" + ] }, "authorized_users": [ "SteveL-MSFT",