lockbox

password manager
Log | Files | Refs | README | LICENSE

commit b017b5b7f8fd66dc13038c41be97f0ab09844a8b
parent b40b475665f70f49c4856ae0017cf4f414ba1c28
Author: Sean Enck <sean@ttypty.com>
Date:   Mon, 19 Jan 2026 19:13:06 -0500

fixing up some ci options

Diffstat:
A.ci.sh | 11+++++++++++
D.ci.yml | 16----------------
2 files changed, 11 insertions(+), 16 deletions(-)

diff --git a/.ci.sh b/.ci.sh @@ -0,0 +1,11 @@ +#!/bin/sh +ENGINE=podman +[ -n "$CONTAINER_ENGINE" ] && ENGINE="$CONTAINER_ENGINE" + +_ci() { + "$ENGINE" run --rm -v "$PWD:/app" -w /app golang:latest sh -c "make $1" +} + +_ci "" +_ci "check" +_ci "releases" diff --git a/.ci.yml b/.ci.yml @@ -1,16 +0,0 @@ -# woodpecker ci yaml file -when: - - event: manual - -steps: - - name: build - image: docker.io/library/golang:latest - commands: - - git config --global --add safe.directory /woodpecker/src - - make - - make check - - name: release - image: docker.io/library/golang:latest - commands: - - git config --global --add safe.directory /woodpecker/src - - make releases