summaryrefslogtreecommitdiff
path: root/spec/factories/ci
Commit message (Collapse)AuthorAgeFilesLines
* Quiet pipeline emailsquiet-pipelinesSean McGivern2017-04-031-0/+4
| | | | | | | | | | 1. Never send a pipeline email to anyone other than the user who created the pipeline. 2. Only send pipeline success emails to people with the custom notification setting for enabled. Watchers and participants will never receive this. 3. When custom settings are unset (for new settings and legacy ones), act as if failed_pipeline is set.
* Fix after_script processing for Runners APIv4Tomasz Maczukin2017-03-231-1/+1
|
* All CI offline migrationsKamil Trzciński2017-03-171-1/+1
|
* Add specs for an extended blocked pipeline statusfeature/gb/verbosify-blocked-pipeline-statusGrzegorz Bizon2017-03-081-0/+8
|
* Merge branch 'feature/runner-jobs-v4-api' into 'master' Kamil Trzciński2017-03-071-2/+28
|\ | | | | | | | | | | | | Feature/runner jobs v4 api Closes #28513 See merge request !9273
| * Add some fixes and refactoring after reviewTomasz Maczukin2017-03-021-0/+4
| |
| * Refactor JobRequest response structureTomasz Maczukin2017-03-021-2/+24
| |
* | Fix specs for detailed statuses for manual actionsGrzegorz Bizon2017-03-061-1/+0
| |
* | Fix specs for environments with manual actionsGrzegorz Bizon2017-03-061-1/+1
| |
* | Refactor code related to pipeline blocking actionsGrzegorz Bizon2017-03-061-0/+4
| |
* | Improve build retry service tests for cloning dataGrzegorz Bizon2017-03-011-0/+8
| |
* | Fix runner tags assignment when retrying a jobGrzegorz Bizon2017-03-011-0/+4
|/
* Merge branch 'master' into fix/gb/pipeline-retry-builds-startedGrzegorz Bizon2017-02-171-0/+12
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (313 commits) Allow slashes in slash command arguments Add API endpoint to get all milestone merge requests remove trailing comma Restore pagination to admin abuse reports replace deprecated NoErrorsPlugin with NoEmitOnErrorsPlugin only compress assets in production Reduce number of pipelines created to test pagination add CHANGELOG.md entry for !8761 prevent diff unfolding link from appearing for deleted files fix build failures only show diff unfolding link if there are more lines to show fix typo in node section Only yield valid references in ReferenceFilter.references_in Cache js selectors; fix css move "Install node modules" step before "Migrate DB" within update process Renders pagination again for pipelines table update migration docs for 8.17 to include minimum node version Add CHANGELOG file Fix positioning of top scroll button Remove comments in migration ...
| * Merge branch '26500-informative-slack-notifications' into 'master' Kamil Trzciński2017-02-171-0/+12
| |\ | | | | | | | | | | | | | | | | | | Adding links to user & build stage in a Build message Closes #26500 See merge request !8641
| | * Adding links to user & build in Chat NotificationsPoornima M2017-01-251-0/+12
| | |
* | | Make build clone/retry implementation more robustfix/gb/pipeline-retry-builds-startedGrzegorz Bizon2017-02-161-1/+12
|/ /
* | Merge remote-tracking branch 'origin/master' into ↵Kamil Trzcinski2017-01-241-1/+2
|\ \ | |/ | | | | backport-ee-changes-for-build-minutes
| * Pass memoizable warnings attribute to stage objectGrzegorz Bizon2017-01-181-1/+2
| |
* | Backport changes introduced by ↵Kamil Trzcinski2017-01-201-0/+4
|/ | | | https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/1083
* Add test example for pipeline with yaml errorsGrzegorz Bizon2017-01-041-0/+4
|
* Add missing specs for new methods in pipeline classGrzegorz Bizon2016-12-271-0/+4
|
* Add specs for pipeline entity and improve factoryGrzegorz Bizon2016-12-211-0/+4
| | | | [ci skip]
* Convert CI YAML variables keys into stringsLin Jen-Shin2016-12-151-1/+1
| | | | | | | So that this would be more consistent with the other variables, which all of them are string based. Closes #25554
* Add tests for build play extended detailed statusGrzegorz Bizon2016-12-121-3/+10
|
* Added Ci::Stage specsKamil Trzcinski2016-12-061-0/+13
|
* Merge branch 'fix/create-pipeline-with-builds-in-transaction' into 'master' Kamil Trzciński2016-11-301-12/+16
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create pipeline along with builds in the transation ## What does this MR do? This MR makes it possible to create pipeline along with all associated builds in the transaction, to avoid having empty pipelines when asynchronous job gets terminated. This will simplify implementation of `PipelineUnlockWorker` in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6988 and improve reliability of the CI as a whole. ## What are the relevant issue numbers? Related to #24361 See merge request !7742
| * Extend pipelines factory with transient config attributefix/create-pipeline-with-builds-in-transactionGrzegorz Bizon2016-11-271-13/+8
| |
| * Improve readability in pipeline test objects factoryGrzegorz Bizon2016-11-251-6/+10
| |
| * Remove pipeline factory that is not used in testsGrzegorz Bizon2016-11-251-6/+0
| |
| * Restore method that ensures builds being createdGrzegorz Bizon2016-11-251-0/+11
| |
* | Merge remote-tracking branch 'upstream/master' into fix-cancelling-pipelinesLin Jen-Shin2016-11-221-0/+6
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/master: (133 commits) Restructure steps for MM slash commands service Add Changelog entry for CI linter validation fix Fix entry lookup in CI config inheritance rules Extend specs for global ci configuration entry Remove unnecessary require_relative calls from service classes Use single quote for strings Ue svg from SVGs object Dont trigger CI builds [ci skip] Revert "Test only migrations" Add custom copy for each empty stage Refactor Mattermost slash commands docs Fetch only one revision Highlight nav item on hover Test only migrations Fix migration paths tests Scroll CA stage panel on mobile Fix CSS declaration administer to administrator Move SVGs to JS objects for easy reuse Improve deploy command message ...
| * Introduce deploy command that allows to start deployment from one ↵chatops-deploy-commandKamil Trzcinski2016-11-211-0/+6
| | | | | | | | environment to second one
* | Add a lot of tests for scopes, feedback:Lin Jen-Shin2016-11-191-0/+4
|/ | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7508#note_18622499
* Remove schema annotations completelyValery Sizov2016-09-163-44/+0
|
* Add test with inactive error use case for 'POST /ci/api/v1/builds/register.json'Tomasz Maczukin2016-09-131-0/+4
|
* Add endpoints for pipelinesZ.J. van de Weg2016-08-181-18/+0
|
* Pre-create all builds for Pipeline when a trigger is receivedKamil Trzcinski2016-08-112-0/+7
| | | | | | | | | | | This change simplifies a Pipeline processing by introducing a special new status: created. This status is used for all builds that are created for a pipeline. We are then processing next stages and queueing some of the builds (created -> pending) or skipping them (created -> skipped). This makes it possible to simplify and solve a few ordering problems with how previously builds were scheduled. This also allows us to visualise a full pipeline (with created builds). This also removes an after_touch used for updating a pipeline state parameters. Right now in various places we explicitly call a reload_status! on pipeline to force it to be updated and saved.
* Check for Ci::Build artifacts at database levelPaco Guzman2016-07-291-0/+16
|
* Tests refactoring for trigger variablesKatarzyna Kobierska2016-07-261-1/+2
|
* Use value of `yaml_variables` and `when` from config_processor if undefinedKamil Trzcinski2016-07-191-0/+2
|
* Improve manual actions code and add model, service and feature testsKamil Trzcinski2016-07-181-0/+5
| | | | | | | | Manual actions are accessible from: - Pipelines - Builds - Environments - Deployments
* Store when and yaml variables in builds tableKamil Trzcinski2016-07-161-0/+5
|
* Adopt the rename from ci_commits to ci_pipelinesLin Jen-Shin2016-06-151-0/+0
|
* Rename all `[ci_]commit` to `[ci_]pipeline` in specs and featuresKamil Trzcinski2016-06-032-6/+6
|
* Try to use `pipeline` where applicableKamil Trzcinski2016-06-031-1/+1
|
* Rename Ci::Build commit to pipelineKamil Trzcinski2016-06-031-1/+1
|
* Rename Ci::Commit to Ci::Pipeline and rename some of the ci_commit to pipelineKamil Trzcinski2016-06-021-1/+1
|
* Move all factory definitions to their own fileRobert Speicher2016-03-047-11/+2
|
* Add a spec for coverage indicator in project's builds listBaertierchen/gitlab-ce-showTestCoverageRémy Coutable2016-02-221-1/+5
|
* Fix specsKamil Trzcinski2016-02-191-1/+1
|