1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 23:34:44 +01:00
MadelineProto/.woodpecker/.build.yml

63 lines
1009 B
YAML
Raw Normal View History

matrix:
php:
- "8.1"
2022-06-04 17:50:05 +02:00
clone:
git:
2022-06-04 17:52:21 +02:00
when:
2022-06-23 14:31:41 +02:00
event:
- tag
- push
2023-09-01 14:53:46 +02:00
image: woodpeckerci/plugin-git
2022-06-04 17:50:05 +02:00
settings:
depth: 1
lfs: false
recursive: false
2022-06-04 18:27:08 +02:00
tags: true
2022-06-04 17:50:05 +02:00
2023-09-01 14:52:26 +02:00
steps:
2022-06-04 17:40:03 +02:00
build:
2022-06-06 22:35:03 +02:00
group: build
2023-05-30 21:12:22 +02:00
image: danog/madelineproto:next
2022-06-04 17:40:03 +02:00
when:
2022-06-23 14:40:08 +02:00
event:
- tag
- push
2022-06-04 17:40:03 +02:00
secrets:
- GITHUB_TOKEN
- API_ID
- API_HASH
- BOT_TOKEN
- DEST
environment:
- PHP_VERSION=${php}
2023-05-30 21:25:28 +02:00
- PLATFORM=${platform}
2022-06-04 17:40:03 +02:00
commands:
2023-05-30 21:20:09 +02:00
- apk add bash
2023-06-19 01:07:28 +02:00
- /bin/bash -e tests/makephar.sh
2022-06-04 17:40:03 +02:00
2022-06-23 14:31:41 +02:00
services:
mariadb:
image: mariadb
environment:
- MARIADB_DATABASE=MadelineProto
- MARIADB_USER=MadelineProto
- MARIADB_PASSWORD=test
2022-06-23 15:15:29 +02:00
- MARIADB_RANDOM_ROOT_PASSWORD=yes
2022-06-23 14:31:41 +02:00
postgres:
image: postgres
environment:
- POSTGRES_DB=MadelineProto
- POSTGRES_USER=MadelineProto
- POSTGRES_PASSWORD=test
redis:
2022-11-04 14:16:30 +01:00
image: redis
2023-05-28 19:41:46 +02:00
depends_on:
2023-05-29 18:54:23 +02:00
- build-docker
2023-11-14 18:25:48 +01:00
- test
2023-11-30 21:02:26 +01:00
- cs