ansible-role-php/tests/test-source.yml

23 lines
569 B
YAML
Raw Normal View History

2016-02-16 17:25:40 +01:00
---
- hosts: all
vars:
php_enable_webserver: false
php_install_from_source: true
php_source_clone_dir: /root/php-src
# Workaround for https://github.com/ansible/ansible-modules-core/issues/5457
php_source_clone_depth: 0
2016-02-16 17:25:40 +01:00
php_source_make_command: "make --jobs=2"
2016-11-23 19:06:21 +01:00
php_source_version: "php-7.0.13"
php_memory_limit: "192M"
2016-02-16 17:25:40 +01:00
pre_tasks:
2016-09-18 02:35:07 +02:00
- name: Update apt cache.
apt: update_cache=yes cache_valid_time=600
2016-09-18 02:35:07 +02:00
when: ansible_os_family == 'Debian'
2016-11-23 17:40:54 +01:00
changed_when: false
2016-09-18 02:35:07 +02:00
2016-02-16 17:25:40 +01:00
roles:
2016-09-14 23:22:10 +02:00
- geerlingguy.git
2016-02-16 17:25:40 +01:00
- role_under_test