Compare commits

..

No commits in common. "main" and "docker-4" have entirely different histories.

3 changed files with 23 additions and 9 deletions

View file

@ -1,10 +1,9 @@
when: ---
event: kind: pipeline
- push name: default
- pull_request
- tag node:
- cron nix-daemon: 1
- manual
steps: steps:
- name: check formatting - name: check formatting
@ -24,3 +23,18 @@ steps:
commands: commands:
- nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#test.x86_64-linux.d53 - nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#test.x86_64-linux.d53
- ./result-bin/bin/d53-* - ./result-bin/bin/d53-*
trigger:
event:
- custom
- push
- pull_request
- tag
- cron
---
kind: signature
hmac: 532a3c9927d7b63a4e9d3bc8ad8deda4f164b4477ca992f9e59c3a7c13752d54
...

View file

@ -1,7 +1,7 @@
D53 D53
=== ===
[![status-badge](https://woodpecker.deuxfleurs.fr/api/badges/39/status.svg)](https://woodpecker.deuxfleurs.fr/repos/39) [![Build Status](https://drone.deuxfleurs.fr/api/badges/lx/D53/status.svg)](https://drone.deuxfleurs.fr/lx/D53)
D53 is a dynamic DNS updater that sources information from Consul to route services to the correct place D53 is a dynamic DNS updater that sources information from Consul to route services to the correct place

View file

@ -58,7 +58,7 @@ pub struct DomainProvider {
#[tokio::main] #[tokio::main]
async fn main() { async fn main() {
if std::env::var("RUST_LOG").is_err() { if std::env::var("RUST_LOG").is_err() {
std::env::set_var("RUST_LOG", "d53=info") std::env::set_var("RUST_LOG", "tricot=info")
} }
tracing_subscriber::fmt() tracing_subscriber::fmt()
.with_writer(std::io::stderr) .with_writer(std::io::stderr)