-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.woodpecker.yml
36 lines (33 loc) · 916 Bytes
/
.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
when:
branch: master
pipeline:
check-metadata:
image: bash:alpine3.18
commands:
- bash ./scripts/check-fastlane-metadata.sh
when:
# Only run this check when the Fastlane metadata changes
path:
includes: ['fastlane/metadata/**']
analysis:
image: git.polynom.me/papatutuwawa/docker-flutter:3.13.6
commands:
- PUB_HOSTED_URL=http://172.17.0.1:8000 dart pub get
- dart run build_runner build
- dart run pigeon --input pigeon/quirks.dart
- flutter analyze --no-pub
- flutter test --no-pub
when:
path:
includes: ['test/**', 'src/**']
notify:
image: git.polynom.me/papatutuwawa/woodpecker-xmpp
settings:
xmpp_tls: 1
xmpp_is_muc: 1
xmpp_recipient: [email protected]
xmpp_alias: 2Bot
secrets: [ xmpp_jid, xmpp_password, xmpp_server ]
when:
status:
- failure