Compare commits

..

No commits in common. "72acea3dfc56caa11d86e8daec4c60c665186289" and "a6666dced9fc177c82835b876ce69edfdd369f69" have entirely different histories.

3 changed files with 26 additions and 12 deletions

View File

@ -6,6 +6,9 @@ trigger:
event:
- push
- pull_request
branch:
exclude:
- badges
steps:
- name: test
@ -22,7 +25,7 @@ steps:
GITEA_TOKEN:
from_secret: gitea_token
commands:
- apt-get update -qq && apt-get install -y -qq jq curl
- apt-get update -qq && apt-get install -y -qq jq git curl
- cargo tarpaulin --out Json 2>/dev/null
- |
PCT=$(jq '.coverage | floor' tarpaulin-report.json)
@ -31,13 +34,24 @@ steps:
else COLOR="red"; fi
curl -sf "https://img.shields.io/badge/coverage-${PCT}%25-${COLOR}.svg" -o coverage.svg
- |
curl -sf -X DELETE \
-H "Authorization: token $GITEA_TOKEN" \
"https://git.cincoeuzebio.com/api/packages/cinco/generic/badges/latest" || true
curl -fsSL -X PUT \
-H "Authorization: token $GITEA_TOKEN" \
-T coverage.svg \
"https://git.cincoeuzebio.com/api/packages/cinco/generic/badges/latest/coverage.svg"
git config --global user.email "ci@drone"
git config --global user.name "Drone CI"
REPO="https://cinco:${GITEA_TOKEN}@git.cincoeuzebio.com/cinco/Tmuxido.git"
if git clone --branch badges --single-branch "$REPO" _badges 2>/dev/null; then
cp coverage.svg _badges/
cd _badges
git add coverage.svg
git diff --cached --quiet || git commit -m "ci: update coverage badge [CI SKIP]"
git push
else
mkdir _badges && cp coverage.svg _badges/
cd _badges && git init
git remote add origin "$REPO"
git checkout --orphan badges
git add coverage.svg
git commit -m "ci: add coverage badge"
git push origin badges
fi
---
kind: pipeline

View File

@ -7,8 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [0.2.2] - 2026-02-28
### Added
- Coverage badge gerado por `cargo-tarpaulin` no CI e hospedado no Gitea Generic Package Registry
- CI status, coverage, version e Rust edition badges no README
- Coverage badge generated by `cargo-tarpaulin` in CI, hosted on the `badges` branch
- CI status, coverage, version, and Rust edition badges in README
## [0.2.1] - 2026-02-28

View File

@ -1,7 +1,7 @@
# tmuxido
[![Build Status](https://drone.cincoeuzebio.com/api/badges/cinco/Tmuxido/status.svg)](https://drone.cincoeuzebio.com/cinco/Tmuxido)
[![Coverage](https://git.cincoeuzebio.com/api/packages/cinco/generic/badges/latest/coverage.svg)](https://drone.cincoeuzebio.com/cinco/Tmuxido)
[![CI](https://drone.cincoeuzebio.com/api/badges/cinco/Tmuxido/status.svg)](https://drone.cincoeuzebio.com/cinco/Tmuxido)
[![Coverage](https://git.cincoeuzebio.com/cinco/Tmuxido/raw/branch/badges/coverage.svg)](https://drone.cincoeuzebio.com/cinco/Tmuxido)
[![Version](https://img.shields.io/gitea/v/release/cinco/Tmuxido?gitea_url=https%3A%2F%2Fgit.cincoeuzebio.com&label=version)](https://git.cincoeuzebio.com/cinco/Tmuxido/releases)
![Rust 2024](https://img.shields.io/badge/rust-edition_2024-orange?logo=rust)