From 4c5585d7bcd0f17ac1525801276e049f38595eed Mon Sep 17 00:00:00 2001 From: Alex Lyon Date: Wed, 2 May 2018 09:50:42 -0700 Subject: [PATCH 1/2] Remove Codecov from and add dependency tracking to the README --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b30dfd0ee..d3ccfe778 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ uutils coreutils [![License](http://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/uutils/coreutils/blob/master/LICENSE) [![Build Status](https://api.travis-ci.org/uutils/coreutils.svg?branch=master)](https://travis-ci.org/uutils/coreutils) [![Build status](https://ci.appveyor.com/api/projects/status/787ltcxgy86r20le?svg=true)](https://ci.appveyor.com/project/Arcterus/coreutils) -[![codecov](https://codecov.io/gh/uutils/coreutils/branch/master/graph/badge.svg)](https://codecov.io/gh/uutils/coreutils) [![LOC](https://tokei.rs/b1/github/uutils/coreutils?category=code)](https://github.com/Aaronepower/tokei) +[![dependency status](https://deps.rs/repo/github/uutils/coreutils/status.svg)](https://deps.rs/repo/github/uutils/coreutils) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fuutils%2Fcoreutils.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fuutils%2Fcoreutils?ref=badge_shield) uutils is an attempt at writing universal (as in cross-platform) CLI @@ -62,6 +62,14 @@ every other Rust program: $ cargo build --release ``` +Because the above command attempts to build utilities that only work on +Unix-like platforms at the moment, to build on Windows, you must do the +following: +```bash +# to keep debug information, compile without --release +$ cargo build --release --no-default-features --features generic +``` + If you don't want to build every utility available on your platform into the multicall binary (the Busybox-esque binary), you can also specify which ones you want to build manually. For example: From a854e3f3fa7842690fe1cb86c1fb9207ae6306e3 Mon Sep 17 00:00:00 2001 From: Alex Lyon Date: Wed, 2 May 2018 11:43:37 -0700 Subject: [PATCH 2/2] Disable Codecov comments --- codecov.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/codecov.yml b/codecov.yml index 893129bc7..69cb76019 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,7 +1 @@ -coverage: - status: - project: - default: - # TODO: when the embedding interface is complete, this should be - # changed to something more reasonable, like 1% - threshold: 50% +comment: false