diff --git a/CHANGELOG.md b/CHANGELOG.md index f7bea2a..93a06d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,16 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch ## [Unreleased](https://github.com/idealista/php_role/tree/develop) +## [1.3.0](https://github.com/idealista/php_role/tree/1.3.0) +## [Full Changelog](https://github.com/idealista/php_role/compare/1.2.0...1.3.0) +### Fixed +- *[#6](https://github.com/idealista/php_role/issues/6) Use the cores you want building php* @frantsao + ## [1.2.0](https://github.com/idealista/php_role/tree/1.2.0) ## [Full Changelog](https://github.com/idealista/php_role/compare/1.1.0...1.2.0) ### Added - *Updated test dependencies* @frantsao -- *#3 Added path vars for templates; fix config tasks; improve templates adding additional configuration parameters* @frantsao +- *[#3](https://github.com/idealista/php_role/issues/3) Added path vars for templates; fix config tasks; improve templates adding additional configuration parameters* @frantsao ## [1.1.0](https://github.com/idealista/php_role/tree/1.1.0) ## [Full Changelog](https://github.com/idealista/php_role/compare/1.0.0...1.1.0) diff --git a/README.md b/README.md index 15a4660..6668fd7 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Create or add to your roles dependency file (e.g requirements.yml): ``` yml - src: idealista.php_role - version: 1.2.0 + version: 1.3.0 name: php ``` diff --git a/defaults/main.yml b/defaults/main.yml index 2368dcd..0951b10 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -25,6 +25,7 @@ php_ini_configuration_template: dest: "{{ php_install_dir }}/lib/php.ini" # Required libs & Compile options +php_make_jobs: "{{ ansible_processor_vcpus }}" php_required_libs: - autoconf - automake diff --git a/tasks/install.yml b/tasks/install.yml index 0a19c07..907cda6 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -38,7 +38,7 @@ - name: PHP | Make make: chdir: "{{ php_download_dir }}" - params: "--jobs={{ ansible_processor_cores }}" + params: "--jobs={{ php_make_jobs }}" - name: PHP | Make install make: