Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-18Add latest changes from gitlab-org/gitlab@14-9-stable-eev14.9.0-rc42GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2018-09-26Enable even more frozen string in app/controllersgfyoung
Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-05-24Add checks before redirect, remove status/traceLin Jen-Shin
compatible urls, which were for javascripts
2017-05-23Use controllers to redirectLin Jen-Shin
2017-05-17Rename BuildsController to JobsControllerLin Jen-Shin
Rename other URL generators admin_builds_path -> admin_jobs_path Fix tests and more renaming Fix more tests Also change build_id to job_id in the controller
2017-05-09Merge request widget redesignFatih Acet
2017-05-05Require build to be present in the controllerGrzegorz Bizon
2017-05-05Authorize build update on per object basisGrzegorz Bizon
2017-04-28Resolve "Add more tests for spec/controllers/projects/builds_controller_spec.rb"Dosuken shinya
2017-04-07Count number of queriesKamil Trzcinski
2017-04-06Optimise trace handling code to use streaming instead of full readKamil Trzciński
2017-03-27Merge branch ↵Kamil Trzciński
'12818-expose-simple-cicd-status-endpoints-with-status-serializer-gitlab-ci-status-for-pipeline-job-and-merge-request' into 'master' Expose CI/CD status API endpoints with Gitlab::Ci::Status facility on pipeline, job and merge request for favicon See merge request !9561
2017-03-23No need to authorize_update_build! if 'trace' requested (as same as 'raw')Shinya Maeda
2017-03-23Fix rspec failureShinya Maeda
2017-03-23with_status to only_statusShinya Maeda
2017-03-23Remove legacy def status from builds_controllerShinya Maeda
2017-03-23Expose only status. ci_cd_status to status. Support abstract class.Shinya Maeda
2017-03-23Add api points for ci cd status. Add favicon.Shinya Maeda
2017-01-24Don't override presentee methods for Gitlab::View::Presenter::DelegatedRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-18More improvements to presentersRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-18Add Presentable concernRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-09-21Merge remote-tracking branch 'upstream/master' into pipeline-emailsLin Jen-Shin
* upstream/master: (206 commits) Implement fourth round of comments from @DouweM. Fix `CreateDeploymentService` spec. Reload issues in spec to ensure label<->issue mapping properly loaded Fix build. Remove unnecessary #{} in cycle analytics template. Update cycle analytics icon and fix color of the dismiss button. Use triple dashes for the empty value in cycle analytics. Fix typo on cycle analytics copy. Add page title and fix sub menu width in Cycle Analytics page. Update Cycle Analytics Read more link URL. Display the cycle analytics navbar based on the `:read_cycle_analytics` ability. Improve indentation in `Gitlab::Database::Median` Add a spec for merge request metric caching while refreshing a merge request from a forked project. Use the `IssuableBaseService` lifecycle hooks to cache `MergeRequestsClosingIssues` Implement a second round of review comments from @DouweM. Add docs on Cycle Analytics Test if issue authors can access private projects Update .pkgr.yml with Ubuntu 16.04 dependencies fix issues mr counter Move JSON generation (cycle analytics) into a controller method. ...
2016-09-21Make various trace methods take last_lines argument:Lin Jen-Shin
So that we could read last few lines rather than read the entire file which could be huge.
2016-09-19Merge branch 'master' into per-build-tokenKamil Trzcinski
2016-09-19Don't leak build tokens in build logsKamil Trzcinski
2016-09-16Fix spelling: sucessfully -> successfullyStan Hu
Originally from gitlab-org/gitlab-ee!682
2016-09-01Update specs - add mocks to simulate old versionsTomasz Maczukin
2016-09-01Change 404 to 410 error when raw trace is unavailableTomasz Maczukin
2016-09-01Handle error on trace raw download with old builds (DB stored)Tomasz Maczukin
2016-08-11Pre-create all builds for Pipeline when a trigger is receivedKamil Trzcinski
This change simplifies a Pipeline processing by introducing a special new status: created. This status is used for all builds that are created for a pipeline. We are then processing next stages and queueing some of the builds (created -> pending) or skipping them (created -> skipped). This makes it possible to simplify and solve a few ordering problems with how previously builds were scheduled. This also allows us to visualise a full pipeline (with created builds). This also removes an after_touch used for updating a pipeline state parameters. Right now in various places we explicitly call a reload_status! on pipeline to force it to be updated and saved.
2016-07-18Improve code designKamil Trzcinski
2016-07-18Improve manual actions code and add model, service and feature testsKamil Trzcinski
Manual actions are accessible from: - Pipelines - Builds - Environments - Deployments
2016-07-18Add implementation of manual actionsKamil Trzcinski
2016-07-18Add Pending Tab to Admin BuildsKatarzyna Kobierska
Add Pending Tab to Project Builds Update CHANGELOG
2016-06-11Added initial version of deploymentsKamil Trzcinski
2016-06-10CI build page UI updatePhil Hughes
Added sidebar Removed elements not present in design
2016-06-06Merge remote-tracking branch 'origin/master' into rename-ci-commitKamil Trzcinski
# Conflicts: # spec/features/builds_spec.rb
2016-06-04Remove 'unscoped' from project builds selectionTomasz Maczukin
2016-06-02Rename Ci::Commit to Ci::Pipeline and rename some of the ci_commit to pipelineKamil Trzcinski
2016-05-09Encode state as base64 stringKamil Trzcinski
2016-05-09Send trace to a browser incrementally when build is runningKamil Trzcinski
We send a state of ansi2html to client, client needs to send this state back. The state describes the configuration of generator and position within trace.
2016-04-20Use Rails-way to send file by X-SendfileTomasz Maczukin
2016-04-20Add feature specs for raw traceTomasz Maczukin
2016-04-20Switch raw trace to use X-Sendfile headerTomasz Maczukin
2016-04-20Add raw trace output for GitLab WorkhorseTomasz Maczukin
2016-02-19Move build erasable implementation from concern to modelGrzegorz Bizon
Discussion: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2560#note_3659905
2016-02-19Update relevant build fields when build is erasedGrzegorz Bizon
2016-02-19Add build eraseable feature implementationGrzegorz Bizon