| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| |
| | |
update fog to 1.25.0 to support aws v4
See merge request !129
|
|/ |
|
|\
| |
| |
| |
| |
| |
| |
| | |
Fix re-adding project with the same name but different gitlab_id
https://dev.gitlab.org/gitlab/gitlab-ci/issues/258
See merge request !128
|
|/ |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Show number of runners actively checking in on runners page
https://dev.gitlab.org/gitlab/gitlab-ci/issues/241

See merge request !127
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fix DB configuration for Docker in GitLab CE build script example
The DB host was set to 'postgres' while the rest of the build script is
set up to work with MySQL. This caused builds to fail with:
Mysql2::Error: Unknown MySQL server host 'postgres' (25)
See merge request !126
|
| |/
| |
| |
| |
| |
| |
| | |
The DB host was set to 'postgres' while the rest of the build script is
set up to work with MySQL. This caused builds to fail with:
Mysql2::Error: Unknown MySQL server host 'postgres' (25)
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fix builds retrying when we remove commit from branch and push it again
https://dev.gitlab.org/gitlab/gitlab-ci/issues/255
See merge request !124
|
| | | |
|
| |/ |
|
|\ \
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Implementation of secret variables
https://dev.gitlab.org/gitlab/gitlab-ci/issues/246
@ayufan It will return variables like an array:
API call - POST `builds/register`
```
variables:[{"key": "KEY", "value": "VALUE"}]
```

/cc @dzaporozhets @ayufan
See merge request !125
|
| | |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| |
| |
| |
| | |
Added new requirements
See merge request !122
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | | |
Improve no runners alert
See merge request !123
|
|/ / |
|
|/
|
|
| |
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
| |
|
|\
| |
| |
| |
| |
| | |
Fix yaml generator
See merge request !121
|
| | |
|
|/
|
|
| |
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
|\
| |
| |
| |
| |
| | |
Added .gitlab-ci.yml
See merge request !120
|
|/ |
|
|\
| |
| |
| |
| |
| |
| |
| | |
Fix build retry
https://dev.gitlab.org/gitlab/gitlab-ci/issues/252
See merge request !119
|
|/ |
|
|\
| |
| |
| |
| |
| | |
Documentation fixes
See merge request !118
|
|/ |
|
|
|
|
| |
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
|\
| |
| |
| |
| |
| |
| |
| | |
Migrate job name to build name
https://dev.gitlab.org/gitlab/gitlab-ci/issues/251
See merge request !117
|
| | |
|
|\ \
| |/
|/|
| |
| |
| |
| |
| |
| |
| | |
Remove unnecessary bootstrap customizations
Lets make css simple for CI. It make it easy to support and possible apply bootstrap themes.
cc @vsizov
See merge request !116
|
| |
| |
| |
| | |
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
| |
| |
| |
| | |
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
| | |
|
|\ \
| |/
|/|
| |
| |
| |
| |
| | |
Link to the runner from the build page
https://dev.gitlab.org/gitlab/gitlab-ci/issues/240
See merge request !115
|
| | |
|
|\ \ |
|
| |\ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
CI configuration with .gitlab-ci.yml
https://dev.gitlab.org/gitlab/gitlab-ci/issues/245
Example:
```
# Refs to skip
skip_refs: “deploy*”
# Run before each script
before_script:
- export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
- gem install bundler
- cp config/database.yml.mysql config/database.yml
- cp config/gitlab.yml.example config/gitlab.yml
- touch log/application.log
- touch log/test.log
- bundle install --without postgres production --jobs $(nproc)
- bundle exec rake db:create RAILS_ENV=test
# Parallel jobs, each line is parallel build
jobs:
- script: “rake spec”
runner: “ruby,postgres”
name: “Rspec”
- script: “rake spinach”
runner: “ruby,mysql”
name: “Spinach”
tags: true
branches: false
# Parallel deploy jobs
deploy_jobs:
“cap deploy production”
“cap deploy staging”
```
See merge request !110
|
| | | | |
|
| | | | |
|
| | | | |
|