- 21 Feb, 2019 2 commits
-
-
Alex Hanselka authored
-
Alex Hanselka authored
-
- 14 Feb, 2019 1 commit
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 08 Feb, 2019 1 commit
-
-
Lukas Eipert authored
Use self.integrity_uri over self.hexdigest_integrity_uri(digest), as the latter always returned nil leading to improper cache invalidation. We are alos enabling caching of `tmp/cache/assets/sprockets` again, to get those performance gains.
-
- 07 Feb, 2019 2 commits
-
-
Lukas Eipert authored
-
Lukas Eipert authored
-
- 05 Feb, 2019 1 commit
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 01 Feb, 2019 1 commit
-
-
Rémy Coutable authored
By changing the `review-build-cng` job to be a `single-script-job`, the repository content wasn't there, including the `*_VERSION` files, thus leading to missing variables for components in the triggered pipeline. Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 23 Jan, 2019 2 commits
-
-
Achilleas Pipinellis authored
This started with https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24339 where a broken link was introduced, but the lint checker never caught it. The docs-lint job does the following: ```yaml script: - mv doc/ /tmp/gitlab-docs/content/ - cd /tmp/gitlab-docs # Build HTML from Markdown - bundle exec nanoc # Check the internal links - bundle exec nanoc check internal_links ``` It moves the `doc/` dir inside `content` where Nanoc is expecting the markdown files to be. It then builds the site and finally checks for the links. If the built website was deployed to production, that would be under `docs.gitlab.com/doc`. The interesting part here is that `[the logs](/doc/administration/logs.md#productionlog)` translates to `<a href="/doc/administration/logs.html#productionlog>`, so, Nanoc correctly sees this as an existing file! This MR changes the path of the docs content to be equal to $DOCS_GITLAB_REPO_SUFFIX which is defined as an environment variable and takes the value of the slug of each project: 'ce', 'ee', 'omnibus', 'runner'.
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 22 Jan, 2019 2 commits
-
-
Stan Hu authored
-
Lin Jen-Shin authored
-
- 21 Jan, 2019 2 commits
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
This reverts merge request https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24388
-
- 17 Jan, 2019 1 commit
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 15 Jan, 2019 2 commits
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 14 Jan, 2019 2 commits
-
-
Winnie Hellmann authored
-
Lukas Eipert authored
-
- 09 Jan, 2019 1 commit
-
-
DJ Mountney authored
-
- 17 Dec, 2018 1 commit
-
-
Mark Lapierre authored
Optionally compiling assets when needed for qa jobs proved unworkable so instead we fall back on compiling them for all qa jobs.
-
- 14 Dec, 2018 1 commit
-
-
Jasper Maes authored
-
- 11 Dec, 2018 1 commit
-
-
Marcia Ramos authored
-
- 10 Dec, 2018 2 commits
-
-
Yorick Peterse authored
In https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/20654 this job was marked as allowing failures, but this allows developers to ignore the results that Danger produces. Since it's not clear why the job was allowed to fail, and since it's somewhat counter productive, we no longer allow it to fail.
-
Winnie Hellmann authored
-
- 07 Dec, 2018 1 commit
-
-
Stan Hu authored
This check never worked once the global navigation changes were rolled out in https://gitlab.com/gitlab-com/gitlab-docs/merge_requests/362. The global nav will ALWAYS include /ce and /ee links, and the CE and EE repos will never include documentation for both. gitlab-docs now expects the documentation to be in the following directories: * /tmp/gitlab-docs/ce (CE) * /tmp/gitlab-docs/ee (EE) * /tmp/gitlab-docs/omnibus (Omnibus) The problem is that the CE and EE repos will only include one of the first two. Let's disable this check until https://gitlab.com/gitlab-com/gitlab-docs/issues/305 is resolved. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/55038
-
- 06 Dec, 2018 1 commit
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 05 Dec, 2018 2 commits
-
-
Yorick Peterse authored
Apparently disabling it by checking for a variable doesn't actually disable it. [ci skip]
-
Winnie Hellmann authored
-
- 04 Dec, 2018 5 commits
-
-
ddavison authored
-
Mek Stittri authored
-
Yorick Peterse authored
It appears that for some jobs (https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/129705025 for example) we process a range of commits far greater than necessary, which can lead to commits getting reverted that were merged a long time ago. [ci skip]
-
Yorick Peterse authored
This sets up GitLab CI to automatically push CE master changes into EE master, or revert them if the changes cause merge conflicts. The CI configuration contains a single job to do this: `merge:master`. This job is executed for every push to master, and periodically using a CI schedule. The periodic job is necessary because incremental jobs may not be able to revert commits if newly added commits depend on these commits. By re-running the job periodically (including all changes since a large enough time frame), we can ensure that such commits are also reverted (if they still conflict at that time). The job runs in its own "merge" stage, _after_ the build and prepare stages, but _before_ running the tests. This ensures that randomly failing tests won't prevent code from being merged into EE. Running the stage after the "prepare" stage reduces the chances of the job reverting CE changes just because it ran before a corresponding EE MR was merged into EE master.
-
DJ Mountney authored
For CE on dev.gitlab.org
-
- 29 Nov, 2018 1 commit
-
-
Rémy Coutable authored
Also, enable debug mode. Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 26 Nov, 2018 1 commit
-
-
Rémy Coutable authored
1. Renames review to review-deploy. 2. Renames stop_review to review-stop. 3. Adds a build-qa-image job to the prepare stage and save the QA Docker image as artifact (example: https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/120967019). 4. Adds a manual review-qa job to the test stage to run QA tests against the Review App (example: https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/120967238). 5. Make the review-deploy job plays the review-qa job as soon as the Review App is deployed (example: https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/120988775 ). 6. Updates the Review Apps documentation accordingly. Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 23 Nov, 2018 1 commit
-
-
Achilleas Pipinellis authored
-
- 22 Nov, 2018 2 commits
-
-
George Tsiolis authored
-
George Tsiolis authored
-
- 20 Nov, 2018 1 commit
-
-
Robert Speicher authored
Ordinarily it would get the `gitlab-org` tag from `dedicated-no-docs-pull-cache-job`, but adding the `docker` tag overwrites rather than inherits, so this job has been running on the underpowered hardware of the shared runners rather than our dedicated runners. We're also adding a `high-cpu` tag, which doesn't currently do anything but will be useful for targeting a runner specifically for this job.
-