summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
AgeCommit message (Collapse)Author
2018-08-20ripgrep: migrate to libripgrepAndrew Gallant
This commit does the work to delete the old `grep` crate and effectively rewrite most of ripgrep core to use the new libripgrep crates. The new `grep` crate is now a facade that collects the various crates that make up libripgrep. The most complex part of ripgrep core is now arguably the translation between command line parameters and the library options, which is ultimately where we want to be.
2018-07-17deps: get rid of unstable featureAndrew Gallant
This was introduced as a temporary measure for dealing with the regex crate's unstable feature, but it was never included in a release of ripgrep. Thus, we remove it. The regex crate will now automatically enable SIMD optimizations when available.
2018-03-12deps: update regex crateAndrew Gallant
This update brings with it a new feature of the regex crate which will now use SIMD optimizations automatically at runtime with no necessary compile time flags. All that's needed is to enable the `unstable` feature. Other crates, such as bytecount and encoding_rs, are still using the old-style SIMD support, so we leave the simd-accel and avx-accel features. However, the binaries we distribute on Github no longer have those features enabled, which makes them truly portable. Fixes #135
2017-12-19Speeding CI buildsLilian A. Moraru
2017-07-12[ignore] Add extensive test for gitignore matching (#551)Behnam Esfahbod ✅
[ignore] tests and new matched_path_or_any_parents method The test data (gitignore rules and expected result) is based on the test repo at <https://github.com/behnam/gitignore-test>. The new `matched_path_or_any_parents` method fixes a bug in gitignore matching where rules of form `<dir>/*` result in ignoring only first-level files, but no deep files. This is not correct, as `<dir>/*` matches the first-level directories under `<dir>`, resulting all to be ignored. The new method fixes it by trying to match all parents in the path against the gitignore rules. The new method is necessary because it necessarily entails a performance hit for trying to match all parents.
2017-03-14Add powershell completions to build artifactsLeaf Garland
Use a `ps:` (powershell) command to copy the completions file so that we can use directory globbing to find the file.
2017-03-12Revert "Add _rg.ps1 to windows zip"0.5.0Andrew Gallant
This reverts commit d570f78144b8fb63d02382630d10d5db174d21ce. This was reverted because it's blocking a 0.5.0 release. Windows is foreign to me, and apparently globs are not allowed. See: https://ci.appveyor.com/project/BurntSushi/ripgrep/build/1.0.341/job/7o1jqicmtwm7oa00
2017-03-09Add _rg.ps1 to windows zipDaniel Santa Cruz
Tested with local cargo build paths.
2016-11-20Completely re-work colored output and tty handling.Andrew Gallant
This commit completely guts all of the color handling code and replaces most of it with two new crates: wincolor and termcolor. wincolor provides a simple API to coloring using the Windows console and termcolor provides a platform independent coloring API tuned for multithreaded command line programs. This required a lot more flexibility than what the `term` crate provided, so it was dropped. We instead switch to writing ANSI escape sequences directly and ignore the TERMINFO database. In addition to fixing several bugs, this commit also permits end users to customize colors to a certain extent. For example, this command will set the match color to magenta and the line number background to yellow: rg --colors 'match:fg:magenta' --colors 'line:bg:yellow' foo For tty handling, we've adopted a hack from `git` to do tty detection in MSYS/mintty terminals. As a result, ripgrep should get both color detection and piping correct on Windows regardless of which terminal you use. Finally, switch to line buffering. Performance doesn't seem to be impacted and it's an otherwise more user friendly option. Fixes #37, Fixes #51, Fixes #94, Fixes #117, Fixes #182, Fixes #231
2016-10-29fix appveyor, sighAndrew Gallant
2016-10-29Move all gitignore matching to separate crate.Andrew Gallant
This PR introduces a new sub-crate, `ignore`, which primarily provides a fast recursive directory iterator that respects ignore files like gitignore and other configurable filtering rules based on globs or even file types. This results in a substantial source of complexity moved out of ripgrep's core and into a reusable component that others can now (hopefully) benefit from. While much of the ignore code carried over from ripgrep's core, a substantial portion of it was rewritten with the following goals in mind: 1. Reuse matchers built from gitignore files across directory iteration. 2. Design the matcher data structure to be amenable for parallelizing directory iteration. (Indeed, writing the parallel iterator is the next step.) Fixes #9, #44, #45
2016-10-10Update appveyor to test subcrates.Andrew Gallant
2016-09-29AppVeyor: Change release description to fit Travis binariesRémi Verschelde
2016-09-21grrr fix appveyor deployment filterAndrew Gallant
2016-09-21attempt to fix Windows buildAndrew Gallant
2016-09-08update project name0.0.15Andrew Gallant
2016-09-08Rename xrep to ripgrep.Andrew Gallant
2016-09-05update appveyor0.0.10Andrew Gallant
2016-09-05windows debug, take 10.0.8Andrew Gallant
2016-09-05windows, take 30.0.5Andrew Gallant
2016-09-05windows, take 20.0.4Andrew Gallant
2016-09-05setting up windows, take 10.0.3Andrew Gallant
2016-02-27initial commitAndrew Gallant