Compare commits
5 commits
v0.14.0-rc
...
main
Author | SHA1 | Date | |
---|---|---|---|
8a877ddf63 | |||
313db591b2 | |||
2842b6a55a | |||
|
419b3deab2 | ||
|
b5c3c2f3c1 |
6 changed files with 9 additions and 10 deletions
|
@ -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:
|
||||||
|
|
|
@ -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
1
.gitignore
vendored
|
@ -29,3 +29,4 @@ data/
|
||||||
|
|
||||||
mutants.out/
|
mutants.out/
|
||||||
mutants.out.old/
|
mutants.out.old/
|
||||||
|
.idea/
|
||||||
|
|
|
@ -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 && \
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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"],
|
||||||
|
|
Loading…
Reference in a new issue