summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2020-11-16 19:07:16 -0500
committerAndrew Gallant <jamslam@gmail.com>2020-11-16 19:07:16 -0500
commitd97fb72d84a8dff95ecc1f7ce7736a0b0673b712 (patch)
tree1cae509dd9ab5abdc223a26a63369733bb95dfba
parentd6365117e2e5be90397b65ed6f4c20f98a504f22 (diff)
doc: update CI links in crate READMEs
I switched to GitHub Actions long ago, which replaces both Travis and AppVeyor. Fixes #1732
-rw-r--r--crates/cli/README.md3
-rw-r--r--crates/globset/README.md3
-rw-r--r--crates/grep/README.md3
-rw-r--r--crates/ignore/README.md3
-rw-r--r--crates/matcher/README.md3
-rw-r--r--crates/pcre2/README.md3
-rw-r--r--crates/printer/README.md3
-rw-r--r--crates/regex/README.md3
-rw-r--r--crates/searcher/README.md3
9 files changed, 9 insertions, 18 deletions
diff --git a/crates/cli/README.md b/crates/cli/README.md
index 97741b8b..c1cc02bd 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 e26a0974..17cab82c 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 93d8da07..b9df4dc0 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 94b2564c..d9213ec6 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 dd75ae09..dc77ecff 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 9efa35fc..68350676 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 93505312..a0b3653f 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 ebeecd85..bd51df77 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 7a50dc9a..67a45a89 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/).