summaryrefslogtreecommitdiff
path: root/spec/models/project_auto_devops_spec.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-051-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-211-1/+12
|
* Remove ignore rule for ProjectAutoDevops#domain62128-remove-ignore-rule-for-project-auto-devops-domainTiger2019-07-221-1/+1
|
* Remove un-used methodsThong Kuah2019-05-241-28/+0
| | | | | These two methods were used in emitting AUTO_DEVOPS_DOMAIN which has now been dropped.
* Stop emitting AUTO_DEVOPS_DOMAIN Ci variableThong Kuah2019-05-241-32/+0
| | | | Update documentation to reflect removal
* Autocorrect with RSpec/ExampleWording copThong Kuah2019-04-051-8/+8
| | | | | | | - rewords examples starting with 'should' - rewords examples starting with 'it' Note: I had to manually fixup "onlies" to "only"
* Add # frozen_string_literal to spec/modelsThong Kuah2019-04-011-0/+2
| | | | Adds `# frozen_string_literal: true` to spec/models ruby files
* Fix coding offenceShinya Maeda2018-12-041-2/+2
|
* fix wordingShinya Maeda2018-12-031-1/+1
|
* Fix the coding styleShinya Maeda2018-12-031-2/+2
|
* Validate enum uniquenessShinya Maeda2018-12-031-0/+2
|
* Add timed incremental rollout to Auto DevOpsAlessio Caiazza2018-10-051-10/+17
| | | | | | | | | | | | | Auto DevOps deployment strategies now supports timed incremental rollout. We are deprecating the usage of INCREMENTAL_ROLLOUT_ENABLED environment variable in Auto DevOps template. The new behavior will be driven by the INCREMENTAL_ROLLOUT_MODE variable that can either be manual (same as INCREMENTAL_ROLLOUT_ENABLED) or timed. Rollout deployments will be executed using a 5 minute delay between each job.
* Resolve "Enable Auto DevOps instance-wide on GitLab.com"Dylan Griffith2018-08-161-3/+3
|
* Merge remote-tracking branch 'origin/master' into ↵Kamil Trzciński2018-06-071-0/+93
|\ | | | | | | 38542-application-control-panel-in-settings-page
| * Resolve "Automatically provide a Deploy Token to projects when Auto DevOps ↵Mayra Cabrera2018-06-071-0/+93
| | | | | | | | is enabled"
* | Add spec for continuous deploy strategyMatija Čupić2018-06-071-0/+13
| |
* | Reverse logic of manual and continuous deploy strategiesMatija Čupić2018-06-061-2/+2
| |
* | Add deploy strategy related predefined variablesMatija Čupić2018-06-011-0/+13
| |
* | Add deploy_strategy to ProjectAutoDevopsMatija Čupić2018-06-011-0/+2
|/
* DRY project-level predefined variablesGrzegorz Bizon2018-03-131-4/+4
|
* Use Gitlab::CurrentSettings instead of current_application_settingsMatija Čupić2018-02-031-4/+4
|
* Read the AutoDevOps instance domain in ProjectAutoDevOpsMatija Čupić2018-02-011-3/+40
|
* Add specs for warning message shown in Auto DevOps settings37894-handle-if-auto-devops-domain-is-not-setKamil Trzcinski2017-09-191-2/+10
|
* Add warning message if domain or cluster are not configuredbokebilly2017-09-191-1/+7
|
* Add tests to cover all introduced changesKamil Trzcinski2017-09-061-4/+13
|
* Incorporate reviewZeger-Jan van de Weg2017-09-041-1/+3
|
* Implement the implied CI/CD config for AutoDevOpsZeger-Jan van de Weg2017-08-311-0/+12
Behind an application setting, which defaults to false, this commit implements the implied CI/CD config. Which means that in the case we can't find the `.gitlab-ci.yml` on the commit we want to start a pipeline for, we fall back to an implied configuration. For now the Bash template has been copied to `Auto-Devops.gitlab-ci.yml` so the tests actually work. Fixes #34777