feat: init woodpecker #1
1 changed files with 36 additions and 0 deletions
36
.woodpecker.yml
Normal file
36
.woodpecker.yml
Normal file
|
@ -0,0 +1,36 @@
|
|||
steps:
|
||||
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
|
||||
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
|
||||
|
||||
|
||||
build_docker_img:
|
||||
image: plugins/docker
|
||||
when:
|
||||
event: [pull_request]
|
||||
settings:
|
||||
dry_run: true
|
||||
repo: forgeflux/starchart
|
||||
tags: latest
|
||||
|
||||
services:
|
||||
database:
|
||||
image: postgres
|
||||
environment:
|
||||
POSTGRES_PASSWORD: password
|
Loading…
Reference in a new issue