forked from LemmyNet/joinlemmy-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.woodpecker.yml
92 lines (82 loc) · 2.05 KB
/
.woodpecker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#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
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: ${DRONE_BUILD_LINK}' ntfy.sh/lemmy_drone_ci"
when:
status:
- failure
notify_on_tag_deploy:
image: alpine:3
commands:
- apk add curl
- "curl -d'joinlemmy-site:${DRONE_TAG} deployed' ntfy.sh/lemmy_drone_ci"
when:
event: tag