diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36eb25d..0fe6d00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,8 +38,8 @@ jobs: toolchain: stable components: clippy - - name: cargo clippy (default features) - run: cargo clippy -- -D warnings + - name: cargo clippy (bundled) + run: cargo clippy --features bundled -- -D warnings - - name: cargo test - run: cargo test --all-features + - name: cargo test (bundled) + run: cargo test --features bundled diff --git a/README.md b/README.md index a431d54..d743b9a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -freetype-sys [![Build Status](https://travis-ci.org/PistonDevelopers/freetype-sys.svg?branch=master)](https://travis-ci.org/PistonDevelopers/freetype-sys) [![Build status](https://ci.appveyor.com/api/projects/status/cx6i2r1ibroywo2q?svg=true)](https://ci.appveyor.com/project/jhasse/freetype-sys) +freetype-sys [![Build Status](https://github.com/PistonDevelopers/freetype-sys/actions/workflows/ci.yml/badge.svg)](https://github.com/PistonDevelopers/freetype-sys/actions/workflows/ci.yml) ============ Low level bindings for the FreeType font library. diff --git a/build.rs b/build.rs index 6621e9f..774562e 100644 --- a/build.rs +++ b/build.rs @@ -26,7 +26,6 @@ fn main() { let mut build = cc::Build::new(); build - .cpp(true) .warnings(false) .include(".") .include("freetype2/include")