summaryrefslogtreecommitdiff
path: root/.woodpecker.yaml.fixme
diff options
context:
space:
mode:
Diffstat (limited to '.woodpecker.yaml.fixme')
-rw-r--r--.woodpecker.yaml.fixme48
1 files changed, 0 insertions, 48 deletions
diff --git a/.woodpecker.yaml.fixme b/.woodpecker.yaml.fixme
deleted file mode 100644
index 8da4f0b..0000000
--- a/.woodpecker.yaml.fixme
+++ /dev/null
@@ -1,48 +0,0 @@
-# Define the sequence of steps for the CI pipeline
-steps:
- dependencies:
- image: rust
- environment:
- RUST_BACKTRACE: 1
- CARGO_TERM_COLOR: always
- commands:
- - rustup default stable
- - apt update
- - apt install -y pkg-config libgpg-error-dev libgpgme-dev libassuan-dev gnupg openssl
- when:
- branch: main
- event: [ push, pull_request ]
- build:
- image: rust:1.91-bullseye
- environment:
- PKG_CONFIG_PATH: "/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig"
- RUST_BACKTRACE: 1
- CARGO_TERM_COLOR: always
- commands:
- - cargo build --verbose --release --jobs 2
- when:
- branch: main
- event: [ push, pull_request ]
- clippy:
- image: rust:1.91-bullseye
- environment:
- RUST_BACKTRACE: 1
- CARGO_TERM_COLOR: always
- commands:
- - rustup component add clippy rustfmt
- - cargo fmt --all
- - cargo clippy --jobs 2 -- -D clippy::all # -D warnings
- when:
- branch: main
- event: [ push, pull_request ]
-
-# tests:
-# image: rust
-# environment:
-# RUST_BACKTRACE: 1
-# CARGO_TERM_COLOR: always
-# commands:
-# - cargo test --verbose --jobs 2 -- --test-threads=2
-# when:
-# branch: main
-# event: [ push, pull_request ]