Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Nicer export script output with 'ls -lh' | Jacob Vosmaer | 2015-09-22 | 1 | -1/+1 |
| | |||||
* | Remove unnecessary tar options from restore | Jacob Vosmaer | 2015-09-22 | 1 | -1/+1 |
| | |||||
* | Relax permissions on backup files for exportbackup-directory-permissions | Jacob Vosmaer | 2015-09-22 | 1 | -2/+0 |
| | |||||
* | Add 'rake backup:show_secrets' task for exporting | Jacob Vosmaer | 2015-09-22 | 1 | -0/+24 |
| | |||||
* | Print full path to backup after creating it | Jacob Vosmaer | 2015-09-22 | 2 | -1/+6 |
| | |||||
* | Relax backup dir permissions for final export | Jacob Vosmaer | 2015-09-22 | 1 | -0/+3 |
| | |||||
* | Final backup fixes | Kamil Trzcinski | 2015-09-21 | 2 | -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 fixes | Jacob Vosmaer | 2015-09-18 | 2 | -13/+1 |
| | |||||
* | Remove unneeded large file as soon as possible | Jacob Vosmaer | 2015-09-18 | 1 | -0/+1 |
| | |||||
* | Use faster gzip compression during backup | Jacob Vosmaer | 2015-09-18 | 1 | -3/+3 |
| | |||||
* | Integrate mysql-to-postgres conversion | Jacob Vosmaer | 2015-09-18 | 5 | -16/+89 |
| | |||||
* | Vendor mysql-postgresql-converter | Jacob Vosmaer | 2015-09-18 | 4 | -0/+334 |
| | | | | | Source: https://github.com/gitlabhq/mysql-postgresql-converter.git Revision: dda8bc904596577ce158cf78eedfa11be2c26109 | ||||
* | Add some comments in the backup scripts | Jacob Vosmaer | 2015-09-18 | 2 | -0/+7 |
| | |||||
* | Apply final migrations before creating backup | Jacob Vosmaer | 2015-09-18 | 2 | -1/+4 |
| | |||||
* | Do DB dumps required for final export | Jacob Vosmaer | 2015-09-18 | 1 | -20/+9 |
| | |||||
* | Ensure the builds directory exists during restore | Jacob Vosmaer | 2015-09-18 | 1 | -0/+1 |
| | |||||
* | Make backups more space-efficient | Jacob Vosmaer | 2015-09-18 | 3 | -20/+45 |
| | |||||
* | API for trigger when requested returns trigger request with commit ↵ | Kamil Trzcinski | 2015-08-21 | 2 | -2/+5 |
| | | | | information, but without the created builds | ||||
* | Initial support for build triggers | Kamil Trzcinski | 2015-08-21 | 3 | -0/+53 |
| | |||||
* | Make the YAML validation more stricteryaml-validation | Kamil Trzcinski | 2015-08-19 | 1 | -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 variables | Kamil Trzcinski | 2015-08-05 | 2 | -7/+13 |
| | |||||
* | Fix project API listing returning empty list when first projects are not ↵ | Kamil Trzcinski | 2015-08-05 | 1 | -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ński | 2015-08-05 | 1 | -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 stage | Kamil Trzcinski | 2015-08-03 | 1 | -19/+17 |
| | | |||||
| * | Soft rename type to stage | Kamil Trzcinski | 2015-08-03 | 1 | -12/+13 |
| | | |||||
* | | Merge branch 'remove-unused-entities' into 'master' | Kamil Trzciński | 2015-08-05 | 1 | -5/+0 |
|\ \ | | | | | | | | | | | | | | | | | | | Remove unused entities See merge request !224 | ||||
| * | | Remove unused entitiesremove-unused-entities | Kamil Trzcinski | 2015-08-04 | 1 | -5/+0 |
| |/ | |||||
* | | Allow to use access_token in GitLab CI API | Kamil Trzcinski | 2015-08-04 | 1 | -2/+5 |
|/ | |||||
* | Make YAML validation stricter | Kamil Trzcinski | 2015-08-03 | 1 | -14/+18 |
| | |||||
* | Added Application Settings | Kamil Trzcinski | 2015-07-30 | 1 | -0/+20 |
| | |||||
* | port version matching code in upgrader lib from gitlab | Warren Volz | 2015-07-17 | 1 | -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 rubocop | Kamil Trzcinski | 2015-07-10 | 1 | -1/+1 |
| | |||||
* | Allow to specify flexible list of types in yaml | Kamil Trzcinski | 2015-07-10 | 1 | -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ński | 2015-07-08 | 1 | -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 ```  /cc @vsizov @sytses See merge request !191 | ||||
| * | Allow to defined per-job allow_failure parameterallow-per-job-failure | Kamil Trzcinski | 2015-07-08 | 1 | -1/+6 |
| | | | | | | | | It allows to ignore status of specific job when computed for commit | ||||
* | | Merge branch 'trace_in_file' into 'master' | Kamil Trzciński | 2015-07-08 | 3 | -3/+40 |
|\ \ | |/ |/| | | | | | | | | | | | Build trace in file https://dev.gitlab.org/gitlab/gitlab-ci/issues/272 See merge request !167 | ||||
| * | build trace in file | Valery Sizov | 2015-06-25 | 3 | -3/+40 |
| | | |||||
* | | Added support for image and services | Kamil Trzcinski | 2015-07-06 | 2 | -18/+40 |
| | | |||||
* | | Get rid of private message usageoauth_everywhere | Valery Sizov | 2015-07-02 | 2 | -2/+2 |
| | | |||||
* | | Enhance YAML validation | Kamil Trzcinski | 2015-06-30 | 1 | -35/+27 |
| | | |||||
* | | Improved validation of .gitlab-ci.yml | Valery Sizov | 2015-06-29 | 1 | -0/+17 |
| | | |||||
* | | fix list of branches in only section | Valery Sizov | 2015-06-29 | 1 | -2/+2 |
| | | |||||
* | | update changelog | Valery Sizov | 2015-06-26 | 1 | -1/+1 |
| | | |||||
* | | implemented rake env:info | Valery Sizov | 2015-06-26 | 1 | -0/+68 |
|/ | |||||
* | silent rake backup for CRON | Valery Sizov | 2015-06-25 | 1 | -0/+10 |
| | |||||
* | improved lint stability | Valery Sizov | 2015-06-24 | 1 | -0/+4 |
| | |||||
* | yaml refactoring | Valery Sizov | 2015-06-19 | 1 | -31/+22 |
| | |||||
* | fix API: project create | Valery Sizov | 2015-06-17 | 1 | -2/+2 |
| | |||||
* | better yaml validation | Valery Sizov | 2015-06-17 | 1 | -3/+43 |
| | |||||
* | invalid yaml handling | Valery Sizov | 2015-06-16 | 1 | -3/+1 |
| |