- 20 Jan, 2016 4 commits
-
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Dmitriy Zaporozhets authored
Elasticsearch integration https://gitlab.com/gitlab-org/gitlab-ee/issues/61 Steps: - [x] Base integration - [x] Implement snippet search (service lawyer and actual search) - [x] Implement project search (service lawyer and actual search) - [x] Implement global search (service lawyer and actual search) - [x] Implement search through the notes - [x] Implement search through the milestones - [x] Implement search though the wiki blobes - [x] Implement search though the commits and code - [x] Specs and Spinach (fix) - [ ] Specs and Spinach (new ones) - [x] Take care of omnibus support for elasticsearch - [x] Documentation - [ ] Add elasticsearch check to GitLab check - [x] Update and create index means See merge request !109
-
- 19 Jan, 2016 13 commits
-
-
Douwe Maan authored
Hide issues settings when issues are disabled This closes gitlab-org/gitlab-ee#198 /cc @DouweM @axil @JobV See merge request !122
-
Valery Sizov authored
-
Hannes Rosenögger authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Achilleas Pipinellis authored
[ci skip]
-
Achilleas Pipinellis authored
[ ci skip]
-
Hannes Rosenögger authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
- 18 Jan, 2016 8 commits
-
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
- 17 Jan, 2016 3 commits
-
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
- 15 Jan, 2016 12 commits
-
-
Robert Speicher authored
-
Robert Speicher authored
-
Robert Speicher authored
See merge request !115
-
Robert Speicher authored
-
Robert Speicher authored
-
Jacob Schatz authored
Fix alignment issues after a fix on titles weight Fixes #8102. Fixes #3956. This fixes an alignment regression introduced by !2422. Sorry about that! :/ ## Commit title alignment fixed ![Screen_Shot_2016-01-14_at_16.10.01](/uploads/8fdc08dca379bc551f5872de910c7149/Screen_Shot_2016-01-14_at_16.10.01.png) **The fact that the first row has a smaller height than the other rows was not introduced by !2422 (I've checked by reverting 818607f0 on `master`).** ## Tags name in list ![Screen_Shot_2016-01-14_at_16.10.09](/uploads/fba3978037677bb8855f374b5f38dde0/Screen_Shot_2016-01-14_at_16.10.09.png) See merge request !2431
-
Douwe Maan authored
Let the CI runner know about builds that this build depends on This allows us to implement artifacts passing: runner will download artifacts from all prior builds. It will happen automatically, and always, as long as artifacts are enabled. ## The changes: This MR exposes list of prior builds in CI::API::Builds. **The API response when asking for builds** ```json { "id": 48584, "ref": "0.1.1", "tag": true, "sha": "d63117656af6ff57d99e50cc270f854691f335ad", "status": "success", "name": "pages", "token": "9dd60b4f1a439d1765357446c1084c", "stage": "test", "project_id": 479, "project_name": "test", "commands": "echo commands", "repo_url": "http://gitlab-ci-token:token@gitlab.example/group/test.git", "before_sha": "0000000000000000000000000000000000000000", "allow_git_fetch": false, "options": { "image": "docker:image", "artifacts": { "paths": [ "public" ] }, "cache": { "paths": [ "vendor" ] } }, "timeout": 3600, "variables": [ { "key": "CI_BUILD_TAG", "value": "0.1.1", "public": true } ], "dependencies": { "builds": [ { "id": 48584, "ref": "0.1.1", "tag": true, "sha": "d63117656af6ff57d99e50cc270f854691f335ad", "status": "success", "name": "build", "token": "9dd60b4f1a439d1765357446c1084c", "stage": "build", "project_id": 479, "project_name": "test", "artifacts_file": { "filename": "artifacts.zip", "size": 0 } } ] } } ``` ## How it will work? **Example:** ``` build: type: build script: - echo TEST > test_file artifacts: untracked: true rspec: type: test script: - test-my-project staging: type: deploy script: - scp test_file root@server.com: ``` **The flow:** 1. We run `build`. The `build` creates a file `test_file`. This file gets archived and send us build artifacts. 2. We run `rspec`. The `rspec` downloads build artifacts from `build`. Uses the `test_file`. 3. We run `staging`. The `staging` downloads build artifacts from `build` and `rspec`, but since the `rspec` doesn't have build artifacts we skip that build. Deploys the `test_file`. This partially implements the https://gitlab.com/gitlab-org/gitlab-ce/issues/3423. In the next release we will introduce option to configure what artifacts are received. /cc @grzesiek @DouweM @sytse @rspeicher See merge request !2437
-
Douwe Maan authored
Allow access to artifacts for users with reporter role This is originally introduced by @ajohnsn in this merge request: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2259 I've added and refactored specs, original commit by @ajohnsn has been cherry picked here. See merge request !2448
-
Jacob Vosmaer authored
Don't send (fake) email during dev bootstrap This allows you to do: rake dev:setup BOOTSTRAP=1 and prevent dozens of letter_opener email popups in your browser. In the latest GDK we automatically set BOOTSTRAP=1 during `make`. [ci skip] See merge request !2447
-
Rémy Coutable authored
-
Kamil Trzcinski authored
-
Job van der Voort authored
Document issues and merge requests template feature Covers https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/28 See merge request !119
-