summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Nicer export script output with 'ls -lh'Jacob Vosmaer2015-09-221-1/+1
|
* Remove unnecessary tar options from restoreJacob Vosmaer2015-09-221-1/+1
|
* Relax permissions on backup files for exportbackup-directory-permissionsJacob Vosmaer2015-09-221-2/+0
|
* Add 'rake backup:show_secrets' task for exportingJacob Vosmaer2015-09-221-0/+24
|
* Print full path to backup after creating itJacob Vosmaer2015-09-222-1/+6
|
* Relax backup dir permissions for final exportJacob Vosmaer2015-09-221-0/+3
|
* Final backup fixesKamil Trzcinski2015-09-212-4/+7
| | | | | | - Dump postgres with --no-owner and use conversion only - Execute postgres converter only when using mysql - Use gzip instead of zcat as more portable way to cat gziped file
* Small converter fixesJacob Vosmaer2015-09-182-13/+1
|
* Remove unneeded large file as soon as possibleJacob Vosmaer2015-09-181-0/+1
|
* Use faster gzip compression during backupJacob Vosmaer2015-09-181-3/+3
|
* Integrate mysql-to-postgres conversionJacob Vosmaer2015-09-185-16/+89
|
* Vendor mysql-postgresql-converterJacob Vosmaer2015-09-184-0/+334
| | | | | Source: https://github.com/gitlabhq/mysql-postgresql-converter.git Revision: dda8bc904596577ce158cf78eedfa11be2c26109
* Add some comments in the backup scriptsJacob Vosmaer2015-09-182-0/+7
|
* Apply final migrations before creating backupJacob Vosmaer2015-09-182-1/+4
|
* Do DB dumps required for final exportJacob Vosmaer2015-09-181-20/+9
|
* Ensure the builds directory exists during restoreJacob Vosmaer2015-09-181-0/+1
|
* Make backups more space-efficientJacob Vosmaer2015-09-183-20/+45
|
* API for trigger when requested returns trigger request with commit ↵Kamil Trzcinski2015-08-212-2/+5
| | | | information, but without the created builds
* Initial support for build triggersKamil Trzcinski2015-08-213-0/+53
|
* Make the YAML validation more stricteryaml-validationKamil Trzcinski2015-08-191-1/+6
| | | | | - deny all globals that are not hases and doesn't contain script, the script is required now - verify that script is either string or array of an strings
* Added support for YAML-defined variablesKamil Trzcinski2015-08-052-7/+13
|
* Fix project API listing returning empty list when first projects are not ↵Kamil Trzcinski2015-08-051-2/+2
| | | | | | added to CI The CI prefers to receive the projects added to CI first
* Merge branch 'rename-type-to-stage' into 'master' Kamil Trzciński2015-08-051-19/+18
|\ | | | | | | | | | | | | | | | | Rename type to stage However, make the `type` and `types` as alias for `stage` and `stages`. /cc @vsizov @sytses See merge request !222
| * Rename all occurrences of type to stageKamil Trzcinski2015-08-031-19/+17
| |
| * Soft rename type to stageKamil Trzcinski2015-08-031-12/+13
| |
* | Merge branch 'remove-unused-entities' into 'master' Kamil Trzciński2015-08-051-5/+0
|\ \ | | | | | | | | | | | | | | | | | | Remove unused entities See merge request !224
| * | Remove unused entitiesremove-unused-entitiesKamil Trzcinski2015-08-041-5/+0
| |/
* | Allow to use access_token in GitLab CI APIKamil Trzcinski2015-08-041-2/+5
|/
* Make YAML validation stricterKamil Trzcinski2015-08-031-14/+18
|
* Added Application SettingsKamil Trzcinski2015-07-301-0/+20
|
* port version matching code in upgrader lib from gitlabWarren Volz2015-07-171-3/+6
| | | | | | | - fixes upgrader script not working with v7.1x versions - rspec test cases from gitlab for upgrader lib - rename gitlab to gitlabci - use real data for gitlabci3 version check
* Satisfy rubocopKamil Trzcinski2015-07-101-1/+1
|
* Allow to specify flexible list of types in yamlKamil Trzcinski2015-07-101-18/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ``` types: - test - deploy - notify rspec: script: "rspec" rubocop: script: "rubocop" staging: type: deploy script: "echo deploy" only: - master production: type: deploy script: "echo production" only: - tags dockerhub: type: notify script: "curl http://docker/hub/web/hook" downstream: type: notify script: "curl http://build/downstream/jobs" ``` This will trigger two test jobs in parallel, when finished it will trigged either staging or production, when finished it will trigger dockerhub and downstream in parallel.
* Merge branch 'allow-per-job-failure' into 'master'Kamil Trzciński2015-07-081-1/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow to define per-job allow_failure parameter It allows to ignore status of specific build when computing status for commit YAML syntax: ```yaml rspec: script: aa allow_failure: true ``` ![Screen_Shot_2015-07-08_at_11.28.53](https://gitlab.com/gitlab-org/gitlab-ci/uploads/0af264f026cac18921aef339bcf41fe2/Screen_Shot_2015-07-08_at_11.28.53.png) /cc @vsizov @sytses See merge request !191
| * Allow to defined per-job allow_failure parameterallow-per-job-failureKamil Trzcinski2015-07-081-1/+6
| | | | | | | | It allows to ignore status of specific job when computed for commit
* | Merge branch 'trace_in_file' into 'master'Kamil Trzciński2015-07-083-3/+40
|\ \ | |/ |/| | | | | | | | | | | Build trace in file https://dev.gitlab.org/gitlab/gitlab-ci/issues/272 See merge request !167
| * build trace in fileValery Sizov2015-06-253-3/+40
| |
* | Added support for image and servicesKamil Trzcinski2015-07-062-18/+40
| |
* | Get rid of private message usageoauth_everywhereValery Sizov2015-07-022-2/+2
| |
* | Enhance YAML validationKamil Trzcinski2015-06-301-35/+27
| |
* | Improved validation of .gitlab-ci.ymlValery Sizov2015-06-291-0/+17
| |
* | fix list of branches in only sectionValery Sizov2015-06-291-2/+2
| |
* | update changelogValery Sizov2015-06-261-1/+1
| |
* | implemented rake env:infoValery Sizov2015-06-261-0/+68
|/
* silent rake backup for CRONValery Sizov2015-06-251-0/+10
|
* improved lint stabilityValery Sizov2015-06-241-0/+4
|
* yaml refactoringValery Sizov2015-06-191-31/+22
|
* fix API: project createValery Sizov2015-06-171-2/+2
|
* better yaml validationValery Sizov2015-06-171-3/+43
|
* invalid yaml handlingValery Sizov2015-06-161-3/+1
|