mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-09 18:35:32 +00:00
Fixes #10590. Cancels existing running or queued test builds on TeamCity when a new build is started for the same 'branch' (aka branch or PR). Does not touch release builds or other projects -- only touches recognized test build configurations.
15 lines
No EOL
1 KiB
JavaScript
15 lines
No EOL
1 KiB
JavaScript
// Maps to trigger-definitions.inc.sh and must be kept in sync
|
|
export const testBuildConfigurations = {
|
|
'android': ['KeymanAndroid_TestPullRequests', 'KeymanAndroid_TestSamplesAndTestProjects'],
|
|
'ios': ['Keyman_iOS_TestPullRequests', 'Keyman_iOS_TestSamplesAndTestProjects'],
|
|
'linux': ['KeymanLinux_TestPullRequests', 'Keyman_Linux_Test_Integration', 'Keyman_Common_KPAPI_TestPullRequests_Linux', 'deb-pr-packaging_GitHub'],
|
|
'mac': ['Keyman_KeymanMac_PullRequests', 'Keyman_Common_KPAPI_TestPullRequests_macOS'],
|
|
'windows': ['KeymanDesktop_TestPullRequests', 'KeymanDesktop_TestPrRenderOnScreenKeyboards', 'Keyman_Common_KPAPI_TestPullRequests_Windows'],
|
|
'web': ['Keymanweb_TestPullRequests', 'Keyman_Common_LMLayer_TestPullRequests', 'Keyman_Common_KPAPI_TestPullRequests_WASM'],
|
|
'developer': ['Keyman_Developer_Test'],
|
|
|
|
'common_web': ['Keyman_Test_Common_Web'],
|
|
'common_windows': ['Keyman_Test_Common_Windows'],
|
|
'common_mac': ['Keyman_Test_Common_Mac'],
|
|
'common_linux': ['Keyman_Test_Common_Linux'],
|
|
}; |