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-28Merge branch 'use-git-depth' into 'master' Kamil Trzciński
Use GIT_DEPTH for builds ## What does this MR do? Enables experimental feature to use shallow cloning. ## Why was this MR needed? To speed up the builds and reduce the pressure on NFS servers. This should save us between 30s to 1m of the time of each build. ## More information `GIT_DEPTH`: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/merge_requests/188 ## Problems - Too small value for `GIT_DEPTH` can make it impossible to retry old changes. You will see `unresolved reference` in build log. We should then reconsider changing `GIT_DEPTH` to higher value - Mechanism that rely on `git describe` may not work correctly when `GIT_DEPTH` is set. This will happen, because only part of the git history is present on the build machine ## Requirements GitLab Runner 1.3.0. Currently all our internal runners use beta release or 1.3.0 with support for `GIT_DEPTH`. @pcarranza Please decide when to merge that. We should start monitoring to see an impact on our NFS servers. cc @jacobvosmaer-gitlab @pcarranza See merge request !4730
2016-06-23Add caching for Ruby 2.3 tests.Connor Shea
Accidentally removed when !3807 was merged.
2016-06-17Add master-only limitation.Connor Shea
2016-06-17Use GIT_DEPTH when running buildsKamil Trzcinski
2016-06-15Remove branch restriction.Connor Shea
2016-06-15Upgrade Ruby 2.2 tests to 2.3connorshea
This changes the GitLab CI Tests that test compatibility with Ruby 2.2 to instead test compat with Ruby 2.3. We’ve discussed skipping straight to 2.3.0 when next upgrading the required Ruby version. Since Rails 5 requires 2.2.2, and we have to upgrade anyway, may as well do it now and not risk having to upgrade again come Rails 5.1 or 5.2. Test failures on Ruby 2.3 do not fail the build.
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>