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
2018-10-25Move job stuck status to backendSteve Azzopardi
2018-10-15Merge branch '52614-bugs-on-deployment-status-in-job-log-page' into 'master'Grzegorz Bizon
Send deployment_status when job starts environment Closes #52614 See merge request gitlab-org/gitlab-ce!22354
2018-10-15Send deployment_status when job starts environmentSteve Azzopardi
The check was if the job `has_environment` which results into showing the environment information when the job stops the environment. This result into having a blank `deployment_status`. Use `starts_environment?` to be the same as the haml we have in 11.3 https://gitlab.com/gitlab-org/gitlab-ce/blob/30f019dca78bb64bcb8b355a267be006884e6d8f/app/views/projects/jobs/show.html.haml#L28
2018-10-12Add stage name in job.json responseSteve Azzopardi
2018-10-04Removes icon key from job endpointFilipa Lacerda
This was added because we thought we'd need to render the environment status but we already have this information in the build status
2018-09-27Add has_trace to Projects::JobController#show.jsonSteve Azzopardi
closes https://gitlab.com/gitlab-org/gitlab-ce/issues/51925
2018-09-18Expose runners status information in job apiSteve Azzopardi
2018-09-13Add deployment information in job APISteve Azzopardi
closes https://gitlab.com/gitlab-org/gitlab-ce/issues/50460
2018-09-12Add trigger information for job APISteve Azzopardi
Create new entity called TriggerVariablesEnitity for trigger variables, to aid reuseablity in the future. Update JSON schema to include trigger information in the response. Refactor rspec tests a bit to reduce duplication and for the `context` to make sense. closes https://gitlab.com/gitlab-org/gitlab-ce/issues/50989
2018-09-06Add terminal path to job API responseSteve Azzopardi
closes #51117
2018-09-03Add artifact information for job controllerSteve Azzopardi
gitlab-org/gitlab-ce#50101
2018-07-23Enable frozen string in app/serializers/**/*.rbgfyoung
Partially addresses #47424.
2018-07-03Fix link to job when creating a new issue from a failed jobRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-03-28Refactor build_metadataTomasz Maczukin
2018-03-28Rename metadata relation and methodsTomasz Maczukin
2018-03-28Move job timeout information to new ci_builds_metadata tableTomasz Maczukin
2018-03-28Change timeout_source to enumTomasz Maczukin
2018-03-28Replace user_readable with human_readableTomasz Maczukin
2018-03-28Show timeout information on job's pageTomasz Maczukin
2017-11-06Do not allow jobs to be erasedShinya Maeda
2017-09-12Implemented the new Description ContentTim Zallmann
2017-09-12Fixed the URL + renamed to Job FailedTim Zallmann
2017-07-21Fix target project merge request link on build pageGrzegorz Bizon
2017-07-19Fix job merge request link to a forked source projectGrzegorz Bizon
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-14Merge remote-tracking branch 'upstream/master' into 33149-rename-more-buildsLin Jen-Shin
* upstream/master: (34 commits) Revert "Merge branch 'karma-headless-chrome' into 'master'" Make small pipeline schedules UI enhancements. Remove js classes from vue component that are not needed in vue component Update tests and application Adds "Pipeline" to job's sidebar Change border color of job's scroll controllers to $border-color Add database helpers 'add_timestamps_with_timezone' and 'timestamps_with_timezone' Added Tectonic to the page. Always check read_issue permissions when loading issue Handle legacy jobs without name Do not expose internal artifacts hash in build entity Use wait_for_requests instead of sleep 0.3 Limit wiki container width Fix migrations testing support RSpec hooks order Rename BuildEntity to JobEntity Fix support for external_url for commit statuses Allow to access pipelines even if they are disabled, but only present jobs and commit statuses without giving ability to access them add CHANGELOG.md entry for !12036 remove phantomjs-specific test hacks update karma job to use chrome build image created by gitlab-build-images!41 ...
2017-06-14Merge branch 'fix-external-ci-services' into 'master'Grzegorz Bizon
Allow to access statuses for external CI services Closes #30714, #29369, and #15220 See merge request !11176
2017-06-13Merge remote-tracking branch 'upstream/master' into 33149-rename-more-buildsLin Jen-Shin
* upstream/master: (460 commits) Center dropdown for pipeline's mini graph Documentation bugfix of invalid JSON payload example of Create a commit with multiple files and actions Fix filename method of GitlabUploader to return always real filename Ignore CVE-2017-5029 in Nokogiri Refactor atom builder by using xml.atom layout Let PhantomJS load local images Add a changelog entry Only add a description change note when no tasks are updated Doc: Add the need to upgrade to Go 1.8.3 in the 9.1->9.2 documentation as the upgrade fails with Go 1.5 (installed with Gitlab 8.1) Use gitaly 0.11.2 Add the ability to perform background migrations Always render warnings icon in orange Fix a few translation for zh_TW Improve Job detail view to make it refreshed in real-time instead of reloading Attempts to run RSpec tests twice (1 retry) ignore name validation on importing Only show hover state on links and buttons Use vue files for navigation tabs and buttons doc: add example of scheduler when Add test for u2f helper and changelog entry ...
2017-06-13Do not expose internal artifacts hash in build entityGrzegorz Bizon
2017-06-13Rename BuildEntity to JobEntityKamil Trzcinski
2017-06-12Improve Job detail view to make it refreshed in real-time instead of reloadingFilipa Lacerda
2017-06-06Fix raw_path with the new job path, rename to jobLin Jen-Shin
in the tests
2017-06-03Fix test failuresKamil Trzcinski
2017-06-02Add user to BuildDetailsEntityZ.J. van de Weg
Also add minor changed needed to pass review
2017-06-01Rename build to jobZ.J. van de Weg
2017-05-31Incorporate reviewZ.J. van de Weg
2017-05-31Create PipelineDetailsEntityZ.J. van de Weg
Now we have a PipelineEntity which is a bit smaller, mostly in bytes needing to send to the frontend. PipelineDetailsEntity is the default for the PipelineSerializer, limiting the changes needed. This commit also incorporates the review.
2017-05-31Initial implementation for real time job viewZ.J. van de Weg
Added the needed keys and paths to a new entity, BuildDetailsEntity. Not renaming BuildEntity to BuildBasicEntity on explicit request. Most code now has test coverage, but not all. This will be added on later commits on this branch. Resolves gitlab-org/gitlab-ce#31397