Skip to content

Commit

Permalink
Merge pull request #8 from idealista/develop
Browse files Browse the repository at this point in the history
Release 1.3.0
  • Loading branch information
Francisco Javier Tsao Santín authored Aug 21, 2020
2 parents 0846578 + 6d39c3d commit 5c7646d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
1 change: 1 addition & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5c7646d

Please sign in to comment.