-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy path.woodpecker.yml
More file actions
55 lines (50 loc) · 1.33 KB
/
Copy path.woodpecker.yml
File metadata and controls
55 lines (50 loc) · 1.33 KB
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
steps:
prettier_markdown_check:
image: jauderho/prettier:3.9.6-alpine
commands:
- prettier -c "**/*.md" "**/*.yml"
when:
- event: pull_request
check_formatting:
image: cimg/android:2026.08.1
commands:
- sudo chown -R circleci:circleci .
- ./gradlew lintKotlin
environment:
GRADLE_USER_HOME: ".gradle"
when:
- event: pull_request
check_android_lint:
image: cimg/android:2026.08.1
commands:
- sudo chown -R circleci:circleci .
- ./gradlew lint
environment:
GRADLE_USER_HOME: ".gradle"
when:
- event: pull_request
build_project:
image: cimg/android:2026.08.1
commands:
- sudo chown -R circleci:circleci .
- ./gradlew assembleDebug
environment:
GRADLE_USER_HOME: ".gradle"
when:
- event: pull_request
notify_success:
image: alpine:3
commands:
- apk add curl
- "curl -H'Title: ✔️ ${CI_REPO_NAME}/${CI_COMMIT_SOURCE_BRANCH}' -d'${CI_PIPELINE_URL}' ntfy.sh/thumbkey_ci"
when:
- event: pull_request
status: [success]
notify_failure:
image: alpine:3
commands:
- apk add curl
- "curl -H'Title: ❌ ${CI_REPO_NAME}/${CI_COMMIT_SOURCE_BRANCH}' -d'${CI_PIPELINE_URL}' ntfy.sh/thumbkey_ci"
when:
- event: pull_request
status: [failure]