summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use thread safe method to find cwdconfig_locationDavid Rodríguez2020-03-105-9/+10
| | | | And stub that in plugin's specs.
* Try fix old rubygems version failuresDavid Rodríguez2020-03-091-1/+6
|
* Build local bundler on a "thread-safe folder"David Rodríguez2020-03-091-3/+3
|
* Revert "I don't think this is needed?"David Rodríguez2020-03-091-1/+3
| | | | This reverts commit 4ef1fe77cecf730a58f1451b43c31ff037cb85cb.
* Make relativeness of config a feature flagDavid Rodríguez2020-03-095-10/+47
|
* Resolve gemfile from config in the general caseDavid Rodríguez2020-03-092-2/+19
| | | | For example, when using `bundler` via `-rbundler/setup`.
* New criteria to find config folderDavid Rodríguez2020-03-093-2/+42
| | | | | | | | Now the directory hierarchy is searched up for a ".bundle" dir and if not foun, current folder is used. This is more intuitive than choosing the configuration location than using the folder of the Gemfile being used, but also it will allow us to respect the Gemfile configured via settings since the new algorithm does not need a Gemfile.
* Remove some deprecations from config specsDavid Rodríguez2020-03-091-2/+4
|
* Move some logic to helperDavid Rodríguez2020-03-092-9/+7
|
* bundle_dir is already a PathnameDavid Rodríguez2020-03-091-1/+1
| | | | So we can instead call `parent` on it.
* Already a pathnameDavid Rodríguez2020-03-091-1/+1
|
* I don't think this is needed?David Rodríguez2020-03-091-3/+1
|
* Remove unneeded mockDavid Rodríguez2020-03-091-1/+0
|
* DRY up settings instantiationDavid Rodríguez2020-03-091-3/+7
|
* Small DRY upDavid Rodríguez2020-03-091-5/+3
|
* root is already a PathnameDavid Rodríguez2020-03-091-1/+1
|
* Merge #7660Bundlerbot2020-03-069-93/+158
|\ | | | | | | | | | | | | | | | | | | | | 7660: Try to migrate GitHub Actions from Travis CI r=hsbt a=hsbt Fixes #7587 Co-authored-by: Hiroshi SHIBATA <hsbt@ruby-lang.org> Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
| * Fixup 48eec6db9c316257527f364c0de0fa538663a0ffHiroshi SHIBATA2020-03-061-1/+1
| |
| * Use GitHub Actions instead of Travis CI on the docHiroshi SHIBATA2020-03-062-2/+1
| |
| * Update bors configuration for GitHub ActionsHiroshi SHIBATA2020-03-061-2/+22
| |
| * Fixed the step nameHiroshi SHIBATA2020-03-061-1/+1
| |
| * Move env with RGV under the job.<job_id>Hiroshi SHIBATA2020-03-062-10/+4
| |
| * Removed the needless overwrite step for bundler 2Hiroshi SHIBATA2020-03-061-1/+0
| |
| * Removed needless environmental variable for bundler 3Hiroshi SHIBATA2020-03-061-3/+0
| |
| * Revert "Try to use env with RGV variable in the toplevel"Hiroshi SHIBATA2020-03-062-6/+14
| | | | | | | | This reverts commit 63917c1c9db60b87e14ffb3a8a162e4f58dc4276.
| * Try to use env with RGV variable in the toplevelHiroshi SHIBATA2020-03-062-14/+6
| |
| * Update .github/workflows/ubuntu-bundler3.ymlHiroshi SHIBATA2020-03-061-1/+1
| | | | | | Co-Authored-By: David Rodríguez <deivid.rodriguez@riseup.net>
| * For Ruby 2.3Hiroshi SHIBATA2020-03-061-1/+2
| |
| * StyleHiroshi SHIBATA2020-03-062-4/+2
| |
| * Merge spec:sudo to ubuntu and ubuntu-bundler3 jobsHiroshi SHIBATA2020-03-063-37/+11
| |
| * Remove needless dependencyHiroshi SHIBATA2020-03-062-2/+0
| |
| * Install dev dependencies programmaticallyDavid Rodríguez2020-03-061-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | Without shelling out. It should be faster, and it avoids a ruby 2.3 issue where gems installed through a subprocess are not picked up by the currently running rubygems. I'm also removing some unneeded `travis_retry` from the TravisCI configure. These steps shouldn't timeout and if they do, we should figure out why. Also, they could be hiding other issues not related to the network. In this case, `travis_retry bin/rake spec:parallel_deps` was hiding the issue installing dev dependencies being fixed by this commit.
| * continue-on-error with ruby-headHiroshi SHIBATA2020-03-061-0/+1
| |
| * Revert "Added additional dependency for Ruby 2.8"Hiroshi SHIBATA2020-03-061-2/+0
| | | | | | | | This reverts commit a39e100be885f72a261a4c78032655d13502e44e.
| * Added additional dependency for Ruby 2.8Hiroshi SHIBATA2020-03-061-0/+2
| |
| * Simplify to install parallel gemHiroshi SHIBATA2020-03-061-1/+1
| |
| * renameHiroshi SHIBATA2020-03-062-2/+2
| |
| * Run test with BUNDLER_SPEC_SUB_VERSION=3Hiroshi SHIBATA2020-03-061-0/+5
| |
| * Revert "Try to remove needless installation"Hiroshi SHIBATA2020-03-062-0/+2
| | | | | | | | This reverts commit f018c6dd687b33c71b5ddb42c5e437704e73bd15.
| * Try to remove needless installationHiroshi SHIBATA2020-03-062-2/+0
| |
| * Added RGV to spec:realworldHiroshi SHIBATA2020-03-062-0/+2
| |
| * Removed needless envHiroshi SHIBATA2020-03-061-1/+0
| |
| * Removed needless graphviz dependsHiroshi SHIBATA2020-03-061-1/+0
| |
| * Update .github/workflows/ubuntu.ymlHiroshi SHIBATA2020-03-061-1/+1
| | | | | | Co-Authored-By: David Rodríguez <deivid.rodriguez@riseup.net>
| * Remove Travis configurationHiroshi SHIBATA2020-03-061-43/+0
| |
| * Migrate spec:sudo to GitHub ActionsHiroshi SHIBATA2020-03-061-0/+32
| |
| * Split bundler 3 jobsHiroshi SHIBATA2020-03-062-19/+40
| |
| * SimplifyHiroshi SHIBATA2020-03-061-1/+19
| |
| * Use exclude instead of includeHiroshi SHIBATA2020-03-061-6/+18
| |
| * spaceHiroshi SHIBATA2020-03-061-1/+1
| |