joinlemmy-site/.woodpecker.yml

98 lines
2.2 KiB
YAML
Raw Normal View History

#clone:
# git:
# image: woodpeckerci/plugin-git
# settings:
# recursive: true
# submodule_update_remote: true
pipeline:
prepare_repo:
image: alpine:3
commands:
- apk add git
- git submodule init
- git submodule update --recursive --remote
prettier_markdown_check:
image: tmknom/prettier
commands:
- prettier -c . "!dist" "!lemmy-docs" "!lemmy-translations" "!joinlemmy-translations" "!lemmy-js-client" "!lemmy-stats-crawler"
2023-03-24 20:42:03 +00:00
yarn:
image: node:14-alpine
commands:
- yarn
2023-03-24 20:42:03 +00:00
yarn_lint:
image: node:14-alpine
commands:
- yarn lint
2023-03-24 20:42:03 +00:00
yarn_build_dev:
image: node:14-alpine
commands:
- yarn build:dev
2023-03-24 20:42:03 +00:00
nightly_instance_crawl:
image: node:14-alpine
commands:
# libpq and openssl can probably be removed after lemmy dep is upgraded to 0.16.4+
- apk add cargo pkgconfig openssl openssl-dev libpq libpq-dev
- yarn crawl
when:
event:
- cron
2023-03-24 20:42:03 +00:00
nightly_build_and_push_to_docker_hub:
2023-04-15 20:11:34 +00:00
image: woodpeckerci/plugin-docker-buildx
settings:
dockerfile: Dockerfile
repo: dessalines/joinlemmy-site
2023-04-15 20:11:34 +00:00
tag: latest
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
2022-05-24 13:11:20 +00:00
event:
- cron
2022-07-22 11:02:38 +00:00
2023-03-24 20:42:03 +00:00
release_instance_crawl:
2022-07-22 11:02:38 +00:00
image: node:14-alpine
commands:
# libpq and openssl can probably be removed after lemmy dep is upgraded to 0.16.4+
- apk add cargo pkgconfig openssl openssl-dev libpq libpq-dev
- yarn crawl
when:
2023-03-24 20:42:03 +00:00
event: tag
2022-07-22 11:02:38 +00:00
2023-03-24 20:42:03 +00:00
release_build_and_push_to_docker_hub:
2023-04-15 20:11:34 +00:00
image: woodpeckerci/plugin-docker-buildx
2022-07-22 11:02:38 +00:00
settings:
dockerfile: Dockerfile
repo: dessalines/joinlemmy-site
2023-04-15 20:11:34 +00:00
tag: latest
2022-07-22 11:02:38 +00:00
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
2023-03-24 20:42:03 +00:00
event: tag
2023-02-12 13:38:54 +00:00
2023-03-24 20:42:03 +00:00
notify_on_failure:
2023-02-12 13:38:54 +00:00
image: alpine:3
commands:
2023-02-12 13:38:54 +00:00
- apk add curl
- "curl -d'joinlemmy-site build failed: ${DRONE_BUILD_LINK}' ntfy.sh/lemmy_drone_ci"
when:
status:
- failure
2023-03-24 20:42:03 +00:00
notify_on_tag_deploy:
2023-02-12 13:38:54 +00:00
image: alpine:3
commands:
2023-02-12 13:38:54 +00:00
- apk add curl
- "curl -d'joinlemmy-site:${DRONE_TAG} deployed' ntfy.sh/lemmy_drone_ci"
when:
2023-03-24 20:42:03 +00:00
event: tag