summaryrefslogtreecommitdiff
path: root/.woodpecker.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.woodpecker.yaml')
-rw-r--r--.woodpecker.yaml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.woodpecker.yaml b/.woodpecker.yaml
index 6f2e240..e89c972 100644
--- a/.woodpecker.yaml
+++ b/.woodpecker.yaml
@@ -1,7 +1,7 @@
# Define the sequence of steps for the CI pipeline
steps:
dependencies:
- image: rust:1.78-bullseye
+ image: rust:1.91-bullseye
environment:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
@@ -13,7 +13,7 @@ steps:
branch: main
event: [ push, pull_request ]
build:
- image: rust:1.78-bullseye
+ image: rust:1.91-bullseye
environment:
PKG_CONFIG_PATH: "/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig"
RUST_BACKTRACE: 1
@@ -24,14 +24,13 @@ steps:
branch: main
event: [ push, pull_request ]
clippy:
- image: rust:1.78-bullseye
+ image: rust:1.91-bullseye
environment:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
commands:
- rustup component add clippy rustfmt
- cargo fmt --all
- - export PKG_CONFIG_PATH="/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/share/pkgconfig"
- cargo clippy --jobs 2 -- -D clippy::all # -D warnings
when:
branch: main