Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Neudert <marc.neudert@gmail.com>2017-12-18 21:38:28 +0300
committerStefan Giehl <stefan@piwik.org>2017-12-18 21:38:28 +0300
commitb4675c19e0f18dd8c1a0c2b338198ded31f87107 (patch)
treeeeff284e3448e37924e422ea78c599c8ca6e8c9a /plugins
parentda99e353a99a50d650668d8403a9e879a938bc4c (diff)
Extends TestRunner options for Travis trusty distribution selection (#12295)
* Update generate:travis-yml sudo-false description * Add new "--dist-trusty" travis-yml option to TestRunner
Diffstat (limited to 'plugins')
-rw-r--r--plugins/TestRunner/Commands/GenerateTravisYmlFile.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/TestRunner/Commands/GenerateTravisYmlFile.php b/plugins/TestRunner/Commands/GenerateTravisYmlFile.php
index dfb2d366cd..b6d42c6d1a 100644
--- a/plugins/TestRunner/Commands/GenerateTravisYmlFile.php
+++ b/plugins/TestRunner/Commands/GenerateTravisYmlFile.php
@@ -42,7 +42,8 @@ class GenerateTravisYmlFile extends ConsoleCommand
->addOption('repo-root-dir', null, InputOption::VALUE_REQUIRED, "Path to the repo for whom a .travis.yml file will be generated for.")
->addOption('force-php-tests', null, InputOption::VALUE_NONE, "Forces the presence of the PHP tests jobs for plugin builds.")
->addOption('force-ui-tests', null, InputOption::VALUE_NONE, "Forces the presence of the UI tests jobs for plugin builds.")
- ->addOption('sudo-false', null, InputOption::VALUE_NONE, "If supplied, the .travis.yml file will use travis' new infrastructure.");
+ ->addOption('dist-trusty', null, InputOption::VALUE_NONE, "If supplied, the .travis.yml file will use travis' trusty distribution.")
+ ->addOption('sudo-false', null, InputOption::VALUE_NONE, "If supplied, the .travis.yml file will use travis' container environment.");
}
protected function execute(InputInterface $input, OutputInterface $output)