1 Commits

Author SHA1 Message Date
ce00bf5c70 Upping to version v0.2.7
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed
2024-01-18 23:27:51 -05:00
5 changed files with 2 additions and 18 deletions

View File

@@ -1,13 +1,13 @@
pipeline: pipeline:
tests: tests:
image: rust:1.80 image: rust:1.63
commands: commands:
- "apt update" - "apt update"
- "apt install -y lsof" - "apt install -y lsof"
- "cargo test" - "cargo test"
build_release: build_release:
image: rust:1.80 image: rust:1.63
commands: commands:
- "cargo install cargo-deb cargo-generate-rpm" - "cargo install cargo-deb cargo-generate-rpm"
- "cargo build --release" - "cargo build --release"

View File

@@ -1,7 +0,0 @@
FROM rust:1.80
WORKDIR /src
RUN apt update
RUN apt install -y lsof

View File

@@ -1 +0,0 @@
docker-cargo.sh

View File

@@ -1,4 +0,0 @@
#!/bin/sh
docker run --rm -v $(pwd):/src --name zealot zealot cargo $@

View File

@@ -1,4 +0,0 @@
#!/bin/sh
docker build -t zealot .