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
2020-01-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-26Add frozen_string_literal to spec/lib (part 1)Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-03-20Add :preparing status to HasStatusTiger
Introduces a new status for builds between :created and :pending that will be used when builds require one or more prerequisite actions to be completed before being picked up by a runner (such as creating Kubernetes resources before deploying). The existing :created > :pending transition is unchanged, so only builds that require preparation will use the :preparing status.
2018-02-02Change coverage badge rounding for other CI system consistencyJeff Stubler
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-08-01Ensure all project factories use `:repository` trait or `:empty_project`Robert Speicher
2017-07-21Reword success to passing for pipeline badgesZ.J. van de Weg
2017-07-21Rename build to pipeline for status badgesZ.J. van de Weg
First commit in probably 2, for resolve gitlab-org/gitlab-ce#15582. This commit is renaming files and classes from build to pipeline. Also wording is editted to pipeline. Given `pipeline` had more characters than `build`, I've made the field a bit wider. The width now matchers the one for the coverage badge, so they look nice when in a table format, or in a list. As soon as this commit is merged to master, and released, the build.svg is deprecated, meaning that all users which already placed a badge should update it. However, to make sure it keeps working tests are added for this case.
2017-06-14Correct RSpec/SingleLineHook cop offensesRobert Speicher
2017-02-20Add AsciiDoc snippet for CI/CD BadgesJan Christophersen
This commit adds CI/CD Badges Snippets for AsciiDoc as requested in #26087. I've however run into an issue in highlighting the snippet, it seems as if AsciiDoc is currently not being highlighted properly (displayed as plaintext) Add testcase for to_asciidoc Update test case for Badges list
2017-01-25Use `:empty_project` where possible throughout spec/libRobert Speicher
2016-11-24Use Ci::Pipeline#latest for finding pipelinesLin Jen-Shin
Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7333#note_18861407
2016-10-04Fix pipeline fixtures and calls to removed methodGrzegorz Bizon
2016-08-18Render coverage badge for latest successful pipelineGrzegorz Bizon
2016-08-15Add small corrections to test coverage report badgeGrzegorz Bizon
2016-08-15Add metadata and template methods for coverage badgeGrzegorz Bizon
2016-08-15Add template class for coverage report badgeGrzegorz Bizon
2016-08-15Extract the abstract base class of badge metadataGrzegorz Bizon
2016-08-15Add coverage report badge metadata classGrzegorz Bizon
2016-08-15Extract common badge metadata test examplesGrzegorz Bizon
2016-08-15Implement the main class of test coverage badgeGrzegorz Bizon
2016-08-15Refactor badge template and metadata classesGrzegorz Bizon
2016-08-15Move badges to separate modules and add base classGrzegorz Bizon
2016-08-15Add empty test coverage badge class and specsGrzegorz Bizon
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-08-09Extend build badge specs to cover multiple pipelinesGrzegorz Bizon
2016-08-08Improve builds badge specs, remove legacy methodsGrzegorz Bizon
2016-07-28Add badge template class to use with SVG ERB templateGrzegorz Bizon
2016-07-28Calculate build status only in build badge classGrzegorz Bizon
2016-07-28Extract build status badge metadata to separate classGrzegorz Bizon
2016-07-19Use value of `yaml_variables` and `when` from config_processor if undefinedKamil Trzcinski
2016-06-07Fix tests failuresKamil Trzcinski
2016-06-06Merge branch 'rename-ci-commit' into rename-ci-commit-phase-2Kamil Trzcinski
2016-06-06Merge remote-tracking branch 'origin/master' into rename-ci-commitKamil Trzcinski
2016-06-03Rename all `[ci_]commit` to `[ci_]pipeline` in specs and featuresKamil Trzcinski
2016-06-03Rename Ci::Build commit to pipelineKamil Trzcinski
2016-06-03Extend specs for builds badgeGrzegorz Bizon
Related to #17549
2016-04-12Fix specsKamil Trzcinski
2016-04-06Extend build status badge, add html/markdown methodsGrzegorz Bizon
2016-03-29Extend specs for build badgeGrzegorz Bizon
2016-03-29Refactor builds badge, encapsulate inside a classGrzegorz Bizon