cinderwatch 0.1.0
Some checks failed
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
2026-06-03 21:38:26 +01:00
commit f03e47d9f5
13 changed files with 3775 additions and 0 deletions

37
.woodpecker/build.yaml Normal file
View File

@@ -0,0 +1,37 @@
when:
- event: push
branch: master
- event: pull_request
branch: master
clone:
git:
image: woodpeckerci/plugin-git
settings:
depth: 1
lfs: false
steps:
- name: lint
image: rust:1.96.0-slim-trixie
commands:
- rustup component add clippy rustfmt
- cargo fmt --check
- cargo clippy -- -D warnings
- name: build docker image
image: woodpeckerci/plugin-docker-buildx
settings:
repo: git.infernonode.com/hotarublaze/cinderwatch
registry: git.infernonode.com
tags: latest
cache_images:
- git.infernonode.com/hotarublaze/cinderwatch:cache
username:
from_secret: docker_woodpecker_username
password:
from_secret: docker_woodpecker_pat
platforms: linux/amd64
when:
- event: push
branch: main