1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/.travis.yml

34 lines
463 B
YAML
Raw Normal View History

2019-08-07 09:01:52 +12:00
language: php
2019-08-26 16:56:01 +12:00
2019-08-07 09:01:52 +12:00
php:
2019-10-22 02:17:55 +13:00
- '7.3'
2019-08-07 09:01:52 +12:00
addons:
hosts:
- appwrite.test
notifications:
email:
2019-09-22 04:54:18 +12:00
- team@appwrite.io
2019-11-19 04:52:02 +13:00
2019-08-26 16:56:01 +12:00
services:
- docker
2019-11-30 07:56:10 +13:00
cache:
directories:
- docker_images
2019-11-19 05:04:58 +13:00
2019-11-30 07:56:10 +13:00
before_install:
- docker load -i docker_images/images.tar || true
2019-11-19 05:04:58 +13:00
2019-11-30 07:56:10 +13:00
before_cache:
2019-11-30 08:07:07 +13:00
- docker save -o docker_images/images.tar appwrite_appwrite
2019-11-19 04:52:02 +13:00
2019-08-26 16:56:01 +12:00
install:
- docker-compose up -d
2019-11-20 18:13:51 +13:00
- sleep 90
2019-08-26 16:56:01 +12:00
2019-08-07 09:01:52 +12:00
script:
2019-09-14 17:57:27 +12:00
- docker ps
2019-11-30 06:34:31 +13:00
- docker exec appwrite /bin/bash -c '/usr/share/nginx/html/vendor/bin/phpunit'