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
2016-06-14Merge branch 'retry-spinach-tests' into 'master' Rémy Coutable
Retry spinach tests in case of failure using rerun reporter ## What does this MR do? Fixes Spinach tests to retry on tests on master See merge request !4539
2016-06-13Cache only apt and ruby from vendorKamil Trzcinski
Since introduction of gitignore the vendor folder contains also gitignores which affects detection when to update a cache. We explicitly cache only apt and ruby folders.
2016-06-10Use bundle exec to run spinachKamil Trzcinski
2016-06-10Merge remote-tracking branch 'origin/master' into retry-spinach-testsKamil Trzcinski
2016-06-08Retry spinach tests in case of failure using rerun reporterKamil Trzcinski
2016-06-08Update Knapsack report only on masterKamil Trzcinski
2016-06-07Fix knapsack for masterKamil Trzcinski
2016-06-07Remove stage notifications [ci skip]Kamil Trzcinski
2016-06-07Fix knapsack spinach executionKamil Trzcinski
2016-06-07Fix .gitlab-ci.ymlKamil Trzcinski
2016-06-07Rerun failed spinach testsKamil Trzcinski
2016-06-07Fix license_finderKamil Trzcinski
2016-06-07Install knapsackKamil Trzcinski
2016-06-07Use ruby:2.1 and ruby:2.2 imagesKamil Trzcinski
2016-06-07Merge remote-tracking branch 'origin/master' into knapsackKamil Trzcinski
# Conflicts: # .gitlab-ci.yml
2016-06-06Add some gems' licenses not caught by License Finder.Connor Shea
Also add License Finder to CI (only runs on master).
2016-06-06Install bundlerKamil Trzcinski
2016-06-06Don't install knapsackKamil Trzcinski
2016-06-06Refactor all testing suitesKamil Trzcinski
2016-06-04Use gitlab-build-images for precache some of the dependenciesKamil Trzcinski
2016-06-04Don't start services if they are not neededKamil Trzcinski
2016-06-04USE_BUNDLE_INSTALLKamil Trzcinski
2016-06-03Preserve knapsack stateKamil Trzcinski
2016-06-03Generate knapsack reportsKamil Trzcinski
2016-06-03Merge knapsack reports and upload them to external serverKamil Trzcinski
2016-06-03Use knapsack 1.11.0Kamil Trzcinski
2016-06-03More spinachesKamil Trzcinski
2016-06-03Use more concurrencyKamil Trzcinski
2016-06-03Use spinach recordKamil Trzcinski
2016-06-03Fix knapsack usageKamil Trzcinski
2016-06-03fix ymlKamil Trzcinski
2016-06-03WIPKamil Trzcinski
2016-06-03Use knapsack directlyKamil Trzcinski
2016-06-03TestKamil Trzcinski
2016-06-03TestKamil Trzcinski
2016-06-03TestKamil Trzcinski
2016-06-03TestKamil Trzcinski
2016-06-03add bundlerKamil Trzcinski
2016-06-03Fix assetsKamil Trzcinski
2016-06-03Improve .gitlab-ci.ymlKamil Trzcinski
2016-06-03Use build stageKamil Trzcinski
2016-06-03Touch reportsKamil Trzcinski
2016-06-03Try to use knapsackKamil Trzcinski
2016-04-21Add db:migrate task to CIDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-04-06Optimise .gitlab-ci.ymlKamil Trzcinski
2016-03-29Upgrade bundler-audit from 0.4.0 to 0.5.0connorshea
Bundler Audit can now run check with the `—update` flag to update the Ruby CVE repository before checking. This removes the need for two separate commands in GitLab CI. See the Changelog for more information: https://github.com/rubysec/bundler-audit/blob/master/ChangeLog.md#050--2 015-02-28
2016-03-23Fixes last remaining lints and enables scss-lint test for GitLab CI.connorshea
With this, builds will now fail if they break the SCSS style guide (at least, the parts enabled by the linter). Discussed in #14299.
2016-03-15Merge branch 'css-style-guide' into 'master' Jacob Schatz
CSS style guide Working towards what was discussed in #13552, this adds the [SCSS Linter gem](https://github.com/brigade/scss-lint) for style guide conformity in CI. TODO: - [x] Agree on and write SCSS Style Guide Documentation. - [x] Document the `scss-lint` config file. - [x] Figure out how best to run this in CI, right now it's taking longer than I would think it should. - [x] Use CSSComb for auto-correction (Maybe just include a CSSComb config file and have developers run the node package manually if they're interested in using it?). My logic for not using CSSComb in the first place is that, AFAIK, we don't currently require Node/NPM, even in the dev environment. Maybe I'm wrong about that? `scss-lint` is a Ruby implementation of a similar concept, but it doesn't include autocorrect. Is there a way we can run get GitLab CI to run `scss-lint` without having to put together the full GitLab application? Seeing as it's just static analysis, it seems like a waste of time/resources. /cc @jschatz1 @rspeicher See merge request !3069
2016-03-15Merge branch 'bundler-audit-only-master' into 'master' Robert Speicher
bundle:audit job only on master As discussed in !3215 See merge request !3227
2016-03-15bundle:audit job only on masterZeger-Jan van de Weg