Compare commits

...

5 commits

Author SHA1 Message Date
8a877ddf63 fix: remove stray eprintln
All checks were successful
Rust / build (map[name:nightly]) (push) Successful in 6m16s
Rust / build (map[name:stable]) (push) Successful in 8m15s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 59s
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
2024-12-12 08:11:16 +00:00
313db591b2 build(renovate): PRs should target main
All checks were successful
Rust / build (map[name:stable]) (push) Successful in 9m21s
Rust / build (map[name:nightly]) (push) Successful in 8m42s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 51s
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
2024-12-03 06:53:18 +00:00
2842b6a55a build: ignore occasional use of rover
All checks were successful
Rust / build (map[name:nightly]) (push) Successful in 8m46s
Rust / build (map[name:stable]) (push) Successful in 9m15s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 1m7s
2024-12-03 06:51:36 +00:00
Renovate Bot
419b3deab2 chore(deps): update kemitix/rust action to v2.5.0
Some checks failed
ci/woodpecker/pr/cron-docker-builder Pipeline was successful
ci/woodpecker/pr/push-next Pipeline was successful
ci/woodpecker/pr/tag-created Pipeline was successful
ci/woodpecker/pull_request_closed/cron-docker-builder Pipeline was successful
ci/woodpecker/pull_request_closed/push-next Pipeline was successful
ci/woodpecker/pull_request_closed/tag-created Pipeline was successful
Rust / build (map[name:nightly]) (push) Successful in 8m56s
Rust / build (map[name:stable]) (push) Successful in 9m10s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Failing after 5m0s
2024-12-02 23:01:53 +00:00
Renovate Bot
b5c3c2f3c1 chore(deps): update docker.io/rust docker tag to v1.83.0
All checks were successful
ci/woodpecker/pr/cron-docker-builder Pipeline was successful
ci/woodpecker/pr/push-next Pipeline was successful
ci/woodpecker/pr/tag-created Pipeline was successful
ci/woodpecker/pull_request_closed/cron-docker-builder Pipeline was successful
ci/woodpecker/pull_request_closed/push-next Pipeline was successful
ci/woodpecker/pull_request_closed/tag-created Pipeline was successful
Rust / build (map[name:nightly]) (push) Successful in 7m58s
Rust / build (map[name:stable]) (push) Successful in 7m53s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 1m9s
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful
2024-12-02 21:46:26 +00:00
6 changed files with 9 additions and 10 deletions

View file

@ -22,13 +22,13 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Run release-plz release-pr - name: Run release-plz release-pr
uses: https://git.kemitix.net/kemitix/rust@v2.4.1 uses: https://git.kemitix.net/kemitix/rust@v2.5.0
with: with:
args: release-plz release-pr --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }} args: release-plz release-pr --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
env: env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Run release-plz release - name: Run release-plz release
uses: https://git.kemitix.net/kemitix/rust@v2.4.1 uses: https://git.kemitix.net/kemitix/rust@v2.5.0
with: with:
args: release-plz release --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }} args: release-plz release --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
env: env:

View file

@ -27,26 +27,26 @@ jobs:
uses: kemitix/todo-checker@v1.2.0 uses: kemitix/todo-checker@v1.2.0
- name: Machete - name: Machete
uses: https://git.kemitix.net/kemitix/rust@v2.4.1 uses: https://git.kemitix.net/kemitix/rust@v2.5.0
with: with:
args: ${{ matrix.toolchain.name }} cargo machete args: ${{ matrix.toolchain.name }} cargo machete
- name: Format - name: Format
uses: https://git.kemitix.net/kemitix/rust@v2.4.1 uses: https://git.kemitix.net/kemitix/rust@v2.5.0
with: with:
args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check
- name: Clippy - name: Clippy
uses: https://git.kemitix.net/kemitix/rust@v2.4.1 uses: https://git.kemitix.net/kemitix/rust@v2.5.0
with: with:
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset clippy args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset clippy
- name: Build - name: Build
uses: https://git.kemitix.net/kemitix/rust@v2.4.1 uses: https://git.kemitix.net/kemitix/rust@v2.5.0
with: with:
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset build args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset build
- name: Test - name: Test
uses: https://git.kemitix.net/kemitix/rust@v2.4.1 uses: https://git.kemitix.net/kemitix/rust@v2.5.0
with: with:
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset test args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset test

1
.gitignore vendored
View file

@ -29,3 +29,4 @@ data/
mutants.out/ mutants.out/
mutants.out.old/ mutants.out.old/
.idea/

View file

@ -1,4 +1,4 @@
FROM docker.io/rust:1.82.0-bookworm FROM docker.io/rust:1.83.0-bookworm
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y libdbus-1-dev && \ apt-get install -y libdbus-1-dev && \

View file

@ -66,7 +66,6 @@ impl git::ForgeLike for ForgeJo {
return Ok(Status::Pending); return Ok(Status::Pending);
}; };
let combined_status = response.json::<CombinedStatus>().await.unwrap_or_default(); let combined_status = response.json::<CombinedStatus>().await.unwrap_or_default();
eprintln!("combined_status: {:?}", combined_status);
let status = match combined_status.state { let status = match combined_status.state {
ForgejoState::Success => Status::Pass, ForgejoState::Success => Status::Pass,
ForgejoState::Pending | ForgejoState::Blank => Status::Pending, ForgejoState::Pending | ForgejoState::Blank => Status::Pending,

View file

@ -1,7 +1,6 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"], "extends": ["config:recommended"],
"baseBranches": ["dev"],
"packageRules": [ "packageRules": [
{ {
"matchManagers": ["cargo"], "matchManagers": ["cargo"],