starchart/.woodpecker.yml
Aravinth Manivannan 7893d0a3eb
Some checks failed
ci/woodpecker/pr/woodpecker Pipeline failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: read forgejo hsot from env
2025-01-02 18:28:04 +05:30

57 lines
1.6 KiB
YAML

steps:
setup:
image: python
when:
event: [push, pull_request, tag, deployment]
environment:
POSTGRES_DATABASE_URL: postgres://postgres:password@database:5432/postgres
commands:
- pip install requests
- sed -i 's/localhost/forgejo/' scripts/gitea.py
- python ./scripts/gitea.py
test:
image: rust
when:
event: [push, pull_request, tag, deployment]
environment:
POSTGRES_DATABASE_URL: postgres://postgres:password@database:5432/postgres
SQLITE_DATABASE_URL: sqlite:///tmp/admin.db
FORGEJO_HOST: http://forgejo:3000
commands:
# - curl -fsSL https://deb.nodesource.com/setup_16.x | bash - &&\
# - apt update && apt-get -y --no-install-recommends install nodejs tar gpg curl wget
# - rustup toolchain install nightly
# - rustup override set nightly
- rustup component add rustfmt
- rustup component add clippy
# - export FORGEFLUX_server_COOKIE_SECRET=d05604b56ffd0f57200be49313a9e51436ca8f1678b9ffdf8d2602d5e9839f05
- make migrate
- make
# - make lint
- make test.workspaces
build_docker_img:
image: plugins/docker
when:
event: [pull_request]
settings:
dry_run: true
repo: forgeflux/starchart
tags: latest
services:
forgejo:
image: codeberg.org/forgejo/forgejo:9
environment:
FORGEJO__security__INSTALL_LOCK: true
FORGEJO__federation__ENABLED: true
FORGEJO__server__ROOT_URL: http://forgejo
FORGEJO__server__HTTP_PORT: 3000
database:
image: postgres
environment:
POSTGRES_PASSWORD: password