Compare commits
5 Commits
Author | SHA1 | Date |
---|---|---|
|
fa80dc02f2 | |
|
52870a84f6 | |
|
0a0123c206 | |
|
239ebca079 | |
|
989f60241b |
|
@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [1.3.2] - 2023-01-12
|
||||
### Fixed requirements
|
||||
- Key words for required agent names
|
||||
|
||||
## [1.3.1] - 2023-01-10
|
||||
### Changed
|
||||
- Move one of agent from ios to android
|
||||
|
||||
## [1.3.0] - 2022-07-29
|
||||
### Fixed
|
||||
- Search "*.aab" artifacts
|
||||
|
|
|
@ -13,7 +13,7 @@ function setup_teamcity_settings($args = array())
|
|||
|
||||
$cmd = "git config --get remote.origin.url";
|
||||
$url = str_replace("\n", "", shell_exec($cmd));
|
||||
$name = "\"git: ${url}\"";
|
||||
$name = "\"git: $url\"";
|
||||
set("TEAM_CITY_SETTINGS_NAME_HERE", $name);
|
||||
set("TEAM_CITY_SETTINGS_URL_HERE", "\"$url\"");
|
||||
|
||||
|
|
|
@ -122,7 +122,7 @@ open class BuildAndroidType(name_suffix : String, environment : String) :
|
|||
}
|
||||
|
||||
requirements {
|
||||
equals("teamcity.agent.name", "Default Agent")
|
||||
matches("teamcity.agent.name", "(Default Agent|Default Agent 2)")
|
||||
}
|
||||
}
|
||||
)
|
||||
|
@ -176,7 +176,7 @@ open class BuildIOSType(name_suffix : String, environment : String) :
|
|||
}
|
||||
|
||||
requirements {
|
||||
matches("teamcity.agent.name", "(Default Agent 2|Default Agent 3)")
|
||||
equals("teamcity.agent.name", "Default Agent 3")
|
||||
}
|
||||
})
|
||||
{}
|
||||
|
|
Loading…
Reference in New Issue