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

20 lines
454 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
php_source_make_command: "make --jobs=2"
php_source_version: "php-7.0.5"
php_memory_limit: "192M"
2016-02-16 17:25:40 +01:00
pre_tasks:
- name: Ensure build dependencies are installed (RedHat).
2016-09-18 01:42:47 +02:00
package: name=which state=present
2016-02-16 17:25:40 +01:00
when: ansible_os_family == 'RedHat'
roles:
2016-09-14 23:22:10 +02:00
- geerlingguy.git
2016-02-16 17:25:40 +01:00
- role_under_test