summaryrefslogtreecommitdiff
path: root/.woodpecker.yaml
diff options
context:
space:
mode:
authorNamilskyy <alive6863@gmail.com>2025-12-04 23:47:46 +0300
committerNamilskyy <alive6863@gmail.com>2025-12-04 23:47:46 +0300
commit47df9535e4bb6d2ebacd4c053eaf3a4e11c4a040 (patch)
tree7a7900510969df7fd7eebfde676a19c6b8095a34 /.woodpecker.yaml
parentc9d526d6dc5d2c31abe689999497b00237a0bc12 (diff)
Implemented main functions, stable build
Diffstat (limited to '.woodpecker.yaml')
-rw-r--r--.woodpecker.yaml57
1 files changed, 0 insertions, 57 deletions
diff --git a/.woodpecker.yaml b/.woodpecker.yaml
deleted file mode 100644
index b299d4b..0000000
--- a/.woodpecker.yaml
+++ /dev/null
@@ -1,57 +0,0 @@
-steps:
- dependencies:
- image: rust
- environment:
- RUST_BACKTRACE: 1
- CARGO_TERM_COLOR: always
- commands:
-# - rustup default stable
- - apt install -y libgtk4-dev webkit6gtk4-dev
- when:
- branch: main
- event: [ push, pull_request ]
- build:
- image: rust
- environment:
- RUST_BACKTRACE: 1
- CARGO_TERM_COLOR: always
- commands:
- - cargo build --verbose --release --jobs 2
- when:
- branch: main
- event: [ push, pull_request ]
-
- fmt:
- image: rust
- environment:
- RUST_BACKTRACE: 1
- CARGO_TERM_COLOR: always
- commands:
- - rustup component add rustfmt
- - cargo fmt --all -- --check
- when:
- branch: main
- event: [ push, pull_request ]
-# clippy:
-# image: rust
-# environment:
-# RUST_BACKTRACE: 1
-# CARGO_TERM_COLOR: always
-# commands:
-# - rustup component add clippy rustfmt
-# - cargo fmt --all -- --check
-# - 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 ] \ No newline at end of file