From 416db95f5796104fa46daf5eca88ba1e897c771e Mon Sep 17 00:00:00 2001 From: Ralf Fuest Date: Thu, 26 Jun 2025 17:51:35 +0200 Subject: [PATCH] Replace CI badge --- Cargo.toml | 6 +----- README.md | 2 +- README.tpl | 2 +- doc/releasing.md | 2 +- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bc62cdb..e0ff24b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,13 +12,9 @@ readme = "./README.md" license = "MIT OR Apache-2.0" exclude = [ "/.github/", - "/.circleci/", ".gitignore", ] -[badges] -circle-ci = { repository = "embedded-graphics/tinytga", branch = "master" } - [[bench]] name = "draw" harness = false @@ -31,4 +27,4 @@ nom = { version = "7.1.1", default-features = false } paste = "1.0" criterion = "0.3.5" clap = { version = "3.2.22", features = ["derive"] } -embedded-graphics-simulator = { version = "0.5.0", default_features = false } +embedded-graphics-simulator = { version = "0.5.0", default-features = false } diff --git a/README.md b/README.md index cf5e79c..32c849d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # TinyTGA -[![Build Status](https://circleci.com/gh/embedded-graphics/tinytga/tree/master.svg?style=shield)](https://circleci.com/gh/embedded-graphics/tinytga/tree/master) +[![CI Status](https://github.com/embedded-graphics/tinytga/actions/workflows/ci.yml/badge.svg)](https://github.com/embedded-graphics/tinytga/actions/workflows/ci.yml) [![Crates.io](https://img.shields.io/crates/v/tinytga.svg)](https://crates.io/crates/tinytga) [![Docs.rs](https://docs.rs/tinytga/badge.svg)](https://docs.rs/tinytga) [![embedded-graphics on Matrix](https://img.shields.io/matrix/rust-embedded-graphics:matrix.org)](https://matrix.to/#/#rust-embedded-graphics:matrix.org) diff --git a/README.tpl b/README.tpl index f806f24..fbd2ecc 100644 --- a/README.tpl +++ b/README.tpl @@ -1,6 +1,6 @@ # TinyTGA -[![Build Status](https://circleci.com/gh/embedded-graphics/tinytga/tree/master.svg?style=shield)](https://circleci.com/gh/embedded-graphics/tinytga/tree/master) +[![CI Status](https://github.com/embedded-graphics/tinytga/actions/workflows/ci.yml/badge.svg)](https://github.com/embedded-graphics/tinytga/actions/workflows/ci.yml) [![Crates.io](https://img.shields.io/crates/v/tinytga.svg)](https://crates.io/crates/tinytga) [![Docs.rs](https://docs.rs/tinytga/badge.svg)](https://docs.rs/tinytga) [![embedded-graphics on Matrix](https://img.shields.io/matrix/rust-embedded-graphics:matrix.org)](https://matrix.to/#/#rust-embedded-graphics:matrix.org) diff --git a/doc/releasing.md b/doc/releasing.md index 2e02fcf..b405ae8 100644 --- a/doc/releasing.md +++ b/doc/releasing.md @@ -7,7 +7,7 @@ Target audience: crate maintainers who wish to release `tinytga`. ## On GitHub - Check that all desired PRs are merged and all desired issues are closed/resolved. -- Check that the latest master build passed in CircleCI. +- Check that the latest master build passed in all CI checks. ## On your local machine