Compare commits
5 commits
289f389398
...
ec58cb1745
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ec58cb1745 | ||
|
|
1b52761336 | ||
| d70301766c | |||
|
|
e351e02f60 | ||
|
|
3d84390a54 |
2 changed files with 12 additions and 46 deletions
|
|
@ -1,45 +0,0 @@
|
||||||
# .woodpecker/smoke-init.yml — End-to-end smoke test for disinto init
|
|
||||||
#
|
|
||||||
# Uses the Forgejo image directly (not as a service) so we have CLI
|
|
||||||
# access to set up Forgejo and create the bootstrap admin user.
|
|
||||||
# Then runs disinto init --bare --yes against the local Forgejo instance.
|
|
||||||
#
|
|
||||||
# Forgejo refuses to run as root, so all forgejo commands use su-exec
|
|
||||||
# to run as the 'git' user (pre-created in the Forgejo Docker image).
|
|
||||||
|
|
||||||
when:
|
|
||||||
- event: pull_request
|
|
||||||
path:
|
|
||||||
- "bin/disinto"
|
|
||||||
- "lib/load-project.sh"
|
|
||||||
- "tests/smoke-init.sh"
|
|
||||||
- ".woodpecker/smoke-init.yml"
|
|
||||||
- "docker/**"
|
|
||||||
- event: push
|
|
||||||
branch: main
|
|
||||||
path:
|
|
||||||
- "bin/disinto"
|
|
||||||
- "lib/load-project.sh"
|
|
||||||
- "tests/smoke-init.sh"
|
|
||||||
- ".woodpecker/smoke-init.yml"
|
|
||||||
- "docker/**"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: smoke-init
|
|
||||||
image: codeberg.org/forgejo/forgejo:11.0
|
|
||||||
environment:
|
|
||||||
SMOKE_FORGE_URL: http://localhost:3000
|
|
||||||
commands:
|
|
||||||
# Install test dependencies (Alpine-based image)
|
|
||||||
- apk add --no-cache bash curl jq python3 git >/dev/null 2>&1
|
|
||||||
# Set up Forgejo data directories and config (owned by git user)
|
|
||||||
- mkdir -p /data/gitea/conf /data/gitea/repositories /data/gitea/lfs /data/gitea/log /data/git/.ssh /data/ssh
|
|
||||||
- printf '[database]\nDB_TYPE = sqlite3\nPATH = /data/gitea/forgejo.db\n\n[server]\nHTTP_PORT = 3000\nROOT_URL = http://localhost:3000/\nLFS_START_SERVER = false\n\n[security]\nINSTALL_LOCK = true\n\n[service]\nDISABLE_REGISTRATION = true\n' > /data/gitea/conf/app.ini
|
|
||||||
- chown -R git:git /data
|
|
||||||
# Start Forgejo as git user in background and wait for API
|
|
||||||
- su-exec git forgejo web --config /data/gitea/conf/app.ini &
|
|
||||||
- for i in $(seq 1 30); do curl -sf http://localhost:3000/api/v1/version >/dev/null 2>&1 && break; sleep 1; done
|
|
||||||
# Create bootstrap admin user via CLI
|
|
||||||
- su-exec git forgejo admin user create --admin --username setup-admin --password "SetupPass-789xyz" --email "setup-admin@smoke.test" --must-change-password=false --config /data/gitea/conf/app.ini
|
|
||||||
# Run the smoke test (as root is fine — only forgejo binary needs git user)
|
|
||||||
- bash tests/smoke-init.sh
|
|
||||||
13
bin/disinto
13
bin/disinto
|
|
@ -232,6 +232,7 @@ services:
|
||||||
- ${HOME}/.claude.json:/home/agent/.claude.json:ro
|
- ${HOME}/.claude.json:/home/agent/.claude.json:ro
|
||||||
- CLAUDE_BIN_PLACEHOLDER:/usr/local/bin/claude:ro
|
- CLAUDE_BIN_PLACEHOLDER:/usr/local/bin/claude:ro
|
||||||
- \${HOME}/.ssh:/home/agent/.ssh:ro
|
- \${HOME}/.ssh:/home/agent/.ssh:ro
|
||||||
|
- \${HOME}/.config/sops/age:/home/agent/.config/sops/age:ro
|
||||||
environment:
|
environment:
|
||||||
FORGE_URL: http://forgejo:3000
|
FORGE_URL: http://forgejo:3000
|
||||||
WOODPECKER_SERVER: http://woodpecker:8000
|
WOODPECKER_SERVER: http://woodpecker:8000
|
||||||
|
|
@ -2058,13 +2059,23 @@ disinto_secrets() {
|
||||||
|
|
||||||
printf 'Enter value for %s: ' "$name" >&2
|
printf 'Enter value for %s: ' "$name" >&2
|
||||||
local value
|
local value
|
||||||
IFS= read -r value
|
IFS= read -rs value
|
||||||
|
echo >&2
|
||||||
if [ -z "$value" ]; then
|
if [ -z "$value" ]; then
|
||||||
echo "Error: empty value" >&2
|
echo "Error: empty value" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
local enc_path="${secrets_dir}/${name}.enc"
|
local enc_path="${secrets_dir}/${name}.enc"
|
||||||
|
if [ -f "$enc_path" ]; then
|
||||||
|
printf 'Secret %s already exists. Overwrite? [y/N] ' "$name" >&2
|
||||||
|
local confirm
|
||||||
|
read -r confirm
|
||||||
|
if [ "$confirm" != "y" ] && [ "$confirm" != "Y" ]; then
|
||||||
|
echo "Aborted." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
if ! printf '%s' "$value" | age -r "$AGE_PUBLIC_KEY" -o "$enc_path"; then
|
if ! printf '%s' "$value" | age -r "$AGE_PUBLIC_KEY" -o "$enc_path"; then
|
||||||
echo "Error: encryption failed" >&2
|
echo "Error: encryption failed" >&2
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue