mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-22 04:11:15 +00:00
97 lines
2.3 KiB
YAML
97 lines
2.3 KiB
YAML
#clone:
|
|
# git:
|
|
# image: woodpeckerci/plugin-git
|
|
# settings:
|
|
# recursive: true
|
|
# submodule_update_remote: true
|
|
|
|
steps:
|
|
prepare_repo:
|
|
image: alpine:3
|
|
commands:
|
|
- apk add git
|
|
- git submodule init
|
|
- git submodule update --recursive --remote
|
|
|
|
prettier_markdown_check:
|
|
image: tmknom/prettier:3.0.0
|
|
commands:
|
|
- prettier -c . "!dist" "!lemmy-docs" "!lemmy-translations" "!joinlemmy-translations" "!lemmy-js-client" "!lemmy-stats-crawler" "!src/shared/instance_stats.ts"
|
|
|
|
yarn:
|
|
image: node:14-alpine
|
|
commands:
|
|
- yarn
|
|
|
|
yarn_lint:
|
|
image: node:14-alpine
|
|
commands:
|
|
- yarn lint
|
|
|
|
yarn_build_dev:
|
|
image: node:14-alpine
|
|
commands:
|
|
- yarn build:dev
|
|
|
|
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
|
|
|
|
nightly_build_and_push_to_docker_hub:
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
dockerfile: Dockerfile
|
|
repo: dessalines/joinlemmy-site
|
|
tag: latest
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
when:
|
|
event:
|
|
- cron
|
|
|
|
release_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: tag
|
|
|
|
release_build_and_push_to_docker_hub:
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
dockerfile: Dockerfile
|
|
repo: dessalines/joinlemmy-site
|
|
tag: latest
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
when:
|
|
event: tag
|
|
|
|
notify_on_failure:
|
|
image: alpine:3
|
|
commands:
|
|
- apk add curl
|
|
- "curl -d'joinlemmy-site build failed: ${CI_PIPELINE_URL}' ntfy.sh/lemmy_drone_ci"
|
|
when:
|
|
status:
|
|
- failure
|
|
|
|
notify_on_tag_deploy:
|
|
image: alpine:3
|
|
commands:
|
|
- apk add curl
|
|
- "curl -d'joinlemmy-site:${CI_COMMIT_TAG} deployed' ntfy.sh/lemmy_drone_ci"
|
|
when:
|
|
event: tag
|