Skip to content

Commit

Permalink
Merge pull request #141 from waywardmonkeys/fix-ci
Browse files Browse the repository at this point in the history
Fix ci
  • Loading branch information
bvssvni authored Aug 8, 2024
2 parents b6866ec + 2b1faed commit 551bc22
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 0 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ fn main() {
let mut build = cc::Build::new();

build
.cpp(true)
.warnings(false)
.include(".")
.include("freetype2/include")
Expand Down

0 comments on commit 551bc22

Please sign in to comment.