From d97fb72d84a8dff95ecc1f7ce7736a0b0673b712 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Mon, 16 Nov 2020 19:07:16 -0500 Subject: [PATCH] doc: update CI links in crate READMEs I switched to GitHub Actions long ago, which replaces both Travis and AppVeyor. Fixes #1732 --- crates/cli/README.md | 3 +-- crates/globset/README.md | 3 +-- crates/grep/README.md | 3 +-- crates/ignore/README.md | 3 +-- crates/matcher/README.md | 3 +-- crates/pcre2/README.md | 3 +-- crates/printer/README.md | 3 +-- crates/regex/README.md | 3 +-- crates/searcher/README.md | 3 +-- 9 files changed, 9 insertions(+), 18 deletions(-) diff --git a/crates/cli/README.md b/crates/cli/README.md index 97741b8..c1cc02b 100644 --- a/crates/cli/README.md +++ b/crates/cli/README.md @@ -5,8 +5,7 @@ command line applications. This includes, but is not limited to, parsing hex escapes, detecting whether stdin is readable and more. To the extent possible, this crate strives for compatibility across Windows, macOS and Linux. -[![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep) -[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep) +[![Build status](https://github.com/BurntSushi/ripgrep/workflows/ci/badge.svg)](https://github.com/BurntSushi/ripgrep/actions) [![](https://img.shields.io/crates/v/grep-cli.svg)](https://crates.io/crates/grep-cli) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). diff --git a/crates/globset/README.md b/crates/globset/README.md index e26a097..17cab82 100644 --- a/crates/globset/README.md +++ b/crates/globset/README.md @@ -4,8 +4,7 @@ Cross platform single glob and glob set matching. Glob set matching is the process of matching one or more glob patterns against a single candidate path simultaneously, and returning all of the globs that matched. -[![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep) -[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep) +[![Build status](https://github.com/BurntSushi/ripgrep/workflows/ci/badge.svg)](https://github.com/BurntSushi/ripgrep/actions) [![](https://img.shields.io/crates/v/globset.svg)](https://crates.io/crates/globset) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). diff --git a/crates/grep/README.md b/crates/grep/README.md index 93d8da0..b9df4dc 100644 --- a/crates/grep/README.md +++ b/crates/grep/README.md @@ -2,8 +2,7 @@ grep ---- ripgrep, as a library. -[![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep) -[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep) +[![Build status](https://github.com/BurntSushi/ripgrep/workflows/ci/badge.svg)](https://github.com/BurntSushi/ripgrep/actions) [![](https://img.shields.io/crates/v/grep.svg)](https://crates.io/crates/grep) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). diff --git a/crates/ignore/README.md b/crates/ignore/README.md index 94b2564..d9213ec 100644 --- a/crates/ignore/README.md +++ b/crates/ignore/README.md @@ -4,8 +4,7 @@ The ignore crate provides a fast recursive directory iterator that respects various filters such as globs, file types and `.gitignore` files. This crate also provides lower level direct access to gitignore and file type matchers. -[![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep) -[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep) +[![Build status](https://github.com/BurntSushi/ripgrep/workflows/ci/badge.svg)](https://github.com/BurntSushi/ripgrep/actions) [![](https://img.shields.io/crates/v/ignore.svg)](https://crates.io/crates/ignore) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). diff --git a/crates/matcher/README.md b/crates/matcher/README.md index dd75ae0..dc77ecf 100644 --- a/crates/matcher/README.md +++ b/crates/matcher/README.md @@ -4,8 +4,7 @@ This crate provides a low level interface for describing regular expression matchers. The `grep` crate uses this interface in order to make the regex engine it uses pluggable. -[![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep) -[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep) +[![Build status](https://github.com/BurntSushi/ripgrep/workflows/ci/badge.svg)](https://github.com/BurntSushi/ripgrep/actions) [![](https://img.shields.io/crates/v/grep-matcher.svg)](https://crates.io/crates/grep-matcher) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). diff --git a/crates/pcre2/README.md b/crates/pcre2/README.md index 9efa35f..6835067 100644 --- a/crates/pcre2/README.md +++ b/crates/pcre2/README.md @@ -4,8 +4,7 @@ The `grep-pcre2` crate provides an implementation of the `Matcher` trait from the `grep-matcher` crate. This implementation permits PCRE2 to be used in the `grep` crate for fast line oriented searching. -[![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep) -[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep) +[![Build status](https://github.com/BurntSushi/ripgrep/workflows/ci/badge.svg)](https://github.com/BurntSushi/ripgrep/actions) [![](https://img.shields.io/crates/v/grep-pcre2.svg)](https://crates.io/crates/grep-pcre2) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). diff --git a/crates/printer/README.md b/crates/printer/README.md index 9350531..a0b3653 100644 --- a/crates/printer/README.md +++ b/crates/printer/README.md @@ -3,8 +3,7 @@ grep-printer Print results from line oriented searching in a human readable, aggregate or JSON Lines format. -[![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep) -[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep) +[![Build status](https://github.com/BurntSushi/ripgrep/workflows/ci/badge.svg)](https://github.com/BurntSushi/ripgrep/actions) [![](https://img.shields.io/crates/v/grep-printer.svg)](https://crates.io/crates/grep-printer) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). diff --git a/crates/regex/README.md b/crates/regex/README.md index ebeecd8..bd51df7 100644 --- a/crates/regex/README.md +++ b/crates/regex/README.md @@ -4,8 +4,7 @@ The `grep-regex` crate provides an implementation of the `Matcher` trait from the `grep-matcher` crate. This implementation permits Rust's regex engine to be used in the `grep` crate for fast line oriented searching. -[![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep) -[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep) +[![Build status](https://github.com/BurntSushi/ripgrep/workflows/ci/badge.svg)](https://github.com/BurntSushi/ripgrep/actions) [![](https://img.shields.io/crates/v/grep-regex.svg)](https://crates.io/crates/grep-regex) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). diff --git a/crates/searcher/README.md b/crates/searcher/README.md index 7a50dc9..67a45a8 100644 --- a/crates/searcher/README.md +++ b/crates/searcher/README.md @@ -5,8 +5,7 @@ things like reporting contextual lines, counting lines, inverting a search, detecting binary data, automatic UTF-16 transcoding and deciding whether or not to use memory maps. -[![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep) -[![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep) +[![Build status](https://github.com/BurntSushi/ripgrep/workflows/ci/badge.svg)](https://github.com/BurntSushi/ripgrep/actions) [![](https://img.shields.io/crates/v/grep-searcher.svg)](https://crates.io/crates/grep-searcher) Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/).