mirror of
https://github.com/geerlingguy/ansible-role-php-versions.git
synced 2024-11-25 10:55:10 +01:00
Bump default PHP version to 8.1.
This commit is contained in:
parent
090b3d759a
commit
574b060aa4
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@ -41,12 +41,12 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# Default PHP version (7.4).
|
# Default PHP version (8.1).
|
||||||
- distro: rockylinux8
|
- distro: rockylinux8
|
||||||
playbook: converge.yml
|
playbook: converge.yml
|
||||||
- distro: centos7
|
- distro: centos7
|
||||||
playbook: converge.yml
|
playbook: converge.yml
|
||||||
- distro: ubuntu1804
|
- distro: ubuntu2204
|
||||||
playbook: converge.yml
|
playbook: converge.yml
|
||||||
- distro: debian10
|
- distro: debian10
|
||||||
playbook: converge.yml
|
playbook: converge.yml
|
||||||
@ -59,13 +59,13 @@ jobs:
|
|||||||
- distro: debian10
|
- distro: debian10
|
||||||
playbook: 8.0.yml
|
playbook: 8.0.yml
|
||||||
|
|
||||||
# PHP 7.3.
|
# PHP 7.4.
|
||||||
- distro: rockylinux8
|
- distro: rockylinux8
|
||||||
playbook: 7.3.yml
|
playbook: 7.4.yml
|
||||||
- distro: ubuntu1804
|
- distro: ubuntu1804
|
||||||
playbook: 7.3.yml
|
playbook: 7.4.yml
|
||||||
- distro: debian10
|
- distro: debian10
|
||||||
playbook: 7.3.yml
|
playbook: 7.4.yml
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the codebase.
|
- name: Check out the codebase.
|
||||||
|
@ -12,9 +12,9 @@ N/A
|
|||||||
|
|
||||||
Available variables are listed below, along with default values (see `defaults/main.yml`):
|
Available variables are listed below, along with default values (see `defaults/main.yml`):
|
||||||
|
|
||||||
php_version: '7.4'
|
php_version: '8.1'
|
||||||
|
|
||||||
The PHP version to be installed. Any [currently-supported PHP major version](http://php.net/supported-versions.php) is a valid option (e.g. `7.3`, `7.4`, or `8.0`).
|
The PHP version to be installed. Any [currently-supported PHP major version](http://php.net/supported-versions.php) is a valid option (e.g. `7.4`, `8.0`, or `8.1`).
|
||||||
|
|
||||||
php_versions_install_recommends: false
|
php_versions_install_recommends: false
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ The PHP version to be installed. Any [currently-supported PHP major version](htt
|
|||||||
become: true
|
become: true
|
||||||
|
|
||||||
vars:
|
vars:
|
||||||
php_version: '7.4'
|
php_version: '8.1'
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
- name: geerlingguy.repo-remi
|
- name: geerlingguy.repo-remi
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
# The PHP version to be installed.
|
# The PHP version to be installed.
|
||||||
php_version: '7.4'
|
php_version: '8.1'
|
||||||
|
|
||||||
# For Debian OSes only.
|
# For Debian OSes only.
|
||||||
php_versions_install_recommends: false
|
php_versions_install_recommends: false
|
||||||
|
@ -8,7 +8,7 @@ galaxy_info:
|
|||||||
company: "Midwestern Mac, LLC"
|
company: "Midwestern Mac, LLC"
|
||||||
license: "MIT"
|
license: "MIT"
|
||||||
issue_tracker_url: https://github.com/geerlingguy/ansible-role-php-versions/issues
|
issue_tracker_url: https://github.com/geerlingguy/ansible-role-php-versions/issues
|
||||||
min_ansible_version: 2.4
|
min_ansible_version: 2.10
|
||||||
platforms:
|
platforms:
|
||||||
- name: EL
|
- name: EL
|
||||||
versions:
|
versions:
|
||||||
@ -21,6 +21,7 @@ galaxy_info:
|
|||||||
- trusty
|
- trusty
|
||||||
- xenial
|
- xenial
|
||||||
- bionic
|
- bionic
|
||||||
|
- jammy
|
||||||
galaxy_tags:
|
galaxy_tags:
|
||||||
- php
|
- php
|
||||||
- web
|
- web
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
vars:
|
vars:
|
||||||
php_enable_webserver: false
|
php_enable_webserver: false
|
||||||
php_version: '7.3'
|
php_version: '7.4'
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: Update apt cache.
|
- name: Update apt cache.
|
Loading…
Reference in New Issue
Block a user