summaryrefslogtreecommitdiff
path: root/tasks/bin
Commit message (Collapse)AuthorAgeFilesLines
* bump the timeout up for gecode/depselector/berks installsLamont Granquist2021-03-221-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Use __dir__ instead of getting the dir of __FILE__Tim Smith2020-09-091-1/+1
| | | | | | This is a bit easier to read Signed-off-by: Tim Smith <tsmith@chef.io>
* Speed up our bundle installs by always running 3 jobsfaster_bundler_installsTim Smith2020-08-041-1/+1
| | | | | | | multi-job bundle install is the default in the next release, but for now we should make sure we set it everywhere. Signed-off-by: Tim Smith <tsmith@chef.io>
* [FIX DEPRECATION] with_clean_env is deprecatedDan Webb2020-04-181-1/+1
| | | | | | | clean_env is now unbundled Signed-off-by: Daniel Webb <dan.webb@damacus.io>
* Update docs for forking the stable branchTim Smith2020-02-031-1/+1
| | | | | | Make sure the external tests continue to work. Signed-off-by: Tim Smith <tsmith@chef.io>
* Remove Travis / Jenkins config / docsTim Smith2019-07-311-1/+1
| | | | | | Update some of our build docs to reflect the current process. Nuke the old Travis config. We're Buildkite + appveyor only at this point. Signed-off-by: Tim Smith <tsmith@chef.io>
* Document what the run external command doesTim Smith2019-06-071-0/+6
| | | | | | Help out anyone stumbling upon this to know the backstory Signed-off-by: Tim Smith <tsmith@chef.io>
* Adding in the license-acceptance flowtyler-ball2019-05-031-1/+5
| | | | | | | | | This adds a new feature to chef-client where users must accept the EULA before using the product. Users can accept the license by passing '--chef-license accept', setting ENV[CHEF_LICENSE]=accept or by running 'chef-client' and following the interactive prompt. Signed-off-by: tyler-ball <tball@chef.io>
* add GEMFILE_MOD to pin ohai to github masterlcg/fix-external-testsLamont Granquist2018-10-261-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* test chef-zero against chef_fs in the chef/chef checkoutLamont Granquist2018-04-231-2/+6
| | | | | | goes red because we're really red here Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Revert "splice git checkout of chef into external tests"Lamont Granquist2018-01-241-3/+0
| | | | This reverts commit 2865ca316e5b9512ffd8a7d784355e469a115717.
* splice git checkout of chef into external testsLamont Granquist2018-01-241-0/+3
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* simplify omnibus config and greenify builds againLamont Granquist2017-05-091-110/+0
| | | | | | | | | | | | | | this is also necessary for bundler-1.14.x i'm still not entirely clear why we ever needed all the fussy software gem configs or what the build-chef / build-chef-gem infrastructure ever did for us. it seems to have been mostly micro-optimization around building the software gems before bundle installing the project in order to take advantage of git caching. i aggressively don't care about that, this is quite fast enough. we can install nokogiri and libgecode early and that should take care of 98% of the build optimization issue. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* major testing overhaullcg/simplify-external-testsLamont Granquist2017-04-251-42/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See the PR comments for more philosophical background. This simplifies the external tests. The major feature here is that halite, poise, chefspec, etc are removed from the Gemfile.lock and the transitive Gemfile splicing is gone from the external tests. We're back to simply tracking master on external projects and bundle installing without locks and going red if the break. Those external projects should all similarly track master of chef/chef to reduce the possibility that they break us here. This also bumps bundler to 1.14.x and unblocks us there. It continues to simplify our use of bundler to be more mainstream and less impenetrable. There was some crazy shit that I found where I had to remove env vars like BUNDLE_ENABLE_TRAMPOLINE and the BUNDLE_IGNORE_CONFIG and BUNDLE_FROZEN env vars in appveyor along with the .bundle/config frozen setting were necessary to unbreak appveyor. We seem to have gotten very far afield of standard bundler usage and it was breaking in strange to debug ways. Oddly enough this exposed weird errors in the chef-config/spec/units/fips_spec.rb tests where we need to require the "win32/registry" file there now even though I can't figure out why that broke or how it was working previously. Also, adding x64-mingw32 to x86-mingw32 was necessary to test in appveyor on 64-bit windows (I tried universal-mingw32 and that failed) which seems obvious and is another case that I don't understand how it was working in bundler 1.12.x Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* also remove now-unused binstubsLamont Granquist2017-04-034-86/+0
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* fix Style/SpaceInsideStringInterpolationLamont Granquist2016-12-061-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* add monkey patch to fix bundle locks for platformsbundle_lock_fixMatt Wrock2016-08-182-0/+28
|
* Add release notes and gem version diff generatorJohn Keiser2016-08-101-0/+37
|
* fix delete in bundle-platformMatt Wrock2016-05-251-1/+1
|
* fix bundle locking on bundler 1.12 and enforce version we wantbun_1_11Matt Wrock2016-05-251-2/+6
|
* completely deprecate run_chef_testsLamont Granquist2016-05-021-6/+0
|
* give bundle audit its own runLamont Granquist2016-04-281-11/+1
| | | | and extract most config back out into .travis.yml
* run chefstyle in parallel, onceLamont Granquist2016-04-271-1/+0
| | | | make it easier to see if we have style errors or code errors
* Re-add activesupport testsjk/activesupport-testsJohn Keiser2016-04-191-3/+9
|
* Make gemfile_util capable of copying groups overJohn Keiser2016-04-183-9/+114
|
* Simplify external tests and make them work with Gemfile.lockJohn Keiser2016-04-182-0/+65
|
* Pin everything down with Gemfile.lock, add rake dependencies to updateJohn Keiser2016-04-181-0/+15