Skip to content

doc(CHANGELOG.md) update to version 3.1.10 #271

doc(CHANGELOG.md) update to version 3.1.10

doc(CHANGELOG.md) update to version 3.1.10 #271

Workflow file for this run

name: Test
on: [ push ]
jobs:
test_codeception_lt_4_php_56:
strategy:
matrix:
codeception_version: [ 2, 3 ]
name: PHP 5.6, Codeception ${{ matrix.codeception_version }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: docker/setup-buildx-action@v2
- name: Build WordPress image
uses: docker/build-push-action@v4
with:
context: containers/php
file: containers/php/Dockerfile-PHP-5.6
push: false
tags: lucatume/wp-browser-v3-build:php5.6-apache
cache-from: type=gha,scope=5.6
cache-to: type=gha,mode=max,scope=5.6
build-args: |
PHP_VERSION=5.6
TARGET=wordpress
USER_UID=33
USER_GID=33
USER_NAME=www-data
- name: Build Codeception image
uses: docker/build-push-action@v4
with:
context: containers/php
file: containers/php/Dockerfile-PHP-5.6
push: false
tags: lucatume/wp-browser-v3-build:php5.6-codeception
cache-from: type=gha,scope=5.6
cache-to: type=gha,mode=max,scope=5.6
build-args: |
PHP_VERSION=5.6
TARGET=codeception
USER_UID=33
USER_GID=33
USER_NAME=www-data
- name: Build stack
run: bin/stack -p5.6 build
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: var/cache/composer
key: ${{ runner.os }}-${{ hashFiles('**/composer.json') }}-${{ matrix.codeception_version }}
- name: Install dependencies
run: bin/stack -p5.6 -c${{ matrix.codeception_version }} composer_update
- name: Test
run: bin/stack -p5.6 test
test_codeception_lt_4_php_74:
strategy:
matrix:
codeception_version: [ 2, 3 ]
name: PHP 7.4, Codeception ${{ matrix.codeception_version }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: docker/setup-buildx-action@v2
- name: Build WordPress image
uses: docker/build-push-action@v4
with:
context: containers/php
file: containers/php/Dockerfile
push: false
tags: lucatume/wp-browser-v3-build:php7.4-apache
cache-from: type=gha,scope=7.4
cache-to: type=gha,mode=max,scope=7.4
build-args: |
PHP_VERSION=7.4
TARGET=wordpress
USER_UID=33
USER_GID=33
USER_NAME=www-data
- name: Build Codeception image
uses: docker/build-push-action@v4
with:
context: containers/php
file: containers/php/Dockerfile
push: false
tags: lucatume/wp-browser-v3-build:php7.4-codeception
cache-from: type=gha,scope=7.4
cache-to: type=gha,mode=max,scope=7.4
build-args: |
PHP_VERSION=7.4
TARGET=codeception
USER_UID=33
USER_GID=33
USER_NAME=www-data
- name: Build stack
run: bin/stack -p7.4 build
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: var/cache/composer
key: ${{ runner.os }}-${{ hashFiles('**/composer.json') }}-${{ matrix.codeception_version }}
- name: Install dependencies
run: bin/stack -p7.4 -c${{ matrix.codeception_version }} composer_update
- name: Test
run: bin/stack -p7.4 test
test_codeception_4_php_56:
name: PHP 5.6, Codeception 4
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: docker/setup-buildx-action@v2
- name: Build WordPress image
uses: docker/build-push-action@v4
with:
context: containers/php
file: containers/php/Dockerfile-PHP-5.6
push: false
tags: lucatume/wp-browser-v3-build:php5.6-apache
cache-from: type=gha,scope=5.6
cache-to: type=gha,mode=max,scope=5.6
build-args: |
PHP_VERSION=5.6
TARGET=wordpress
USER_UID=33
USER_GID=33
USER_NAME=www-data
- name: Build Codeception image
uses: docker/build-push-action@v4
with:
context: containers/php
file: containers/php/Dockerfile-PHP-5.6
push: false
tags: lucatume/wp-browser-v3-build:php5.6-codeception
cache-from: type=gha,scope=5.6
cache-to: type=gha,mode=max,scope=5.6
build-args: |
PHP_VERSION=5.6
TARGET=codeception
USER_UID=33
USER_GID=33
USER_NAME=www-data
- name: Build
run: bin/stack -p5.6 build
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: var/cache/composer
key: ${{ runner.os }}-${{ hashFiles('**/composer.codecept-4.json') }}-${{ matrix.codeception_version }}
- name: Install dependencies
run: bin/stack -p5.6 -c4 composer_update
- name: Test
run: bin/stack -p5.6 test
test_codeception_4:
strategy:
matrix:
php_version: [ '7.4', '8.0', '8.1' ]
name: PHP ${{ matrix.php_version }}, Codeception 4
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: docker/setup-buildx-action@v2
- name: Build WordPress image
uses: docker/build-push-action@v4
with:
context: containers/php
file: containers/php/Dockerfile
push: false
tags: lucatume/wp-browser-v3-build:php${{ matrix.php_version }}-apache
cache-from: type=gha,scope=${{ matrix.php_version }}
cache-to: type=gha,mode=max,scope=${{ matrix.php_version }}
build-args: |
PHP_VERSION=${{ matrix.php_version }}
TARGET=wordpress
USER_UID=33
USER_GID=33
USER_NAME=www-data
- name: Build Codeception image
uses: docker/build-push-action@v4
with:
context: containers/php
file: containers/php/Dockerfile
push: false
tags: lucatume/wp-browser-v3-build:php${{ matrix.php_version }}-codeception
cache-from: type=gha,scope=${{ matrix.php_version }}
cache-to: type=gha,mode=max,scope=${{ matrix.php_version }}
build-args: |
PHP_VERSION=${{ matrix.php_version }}
TARGET=codeception
USER_UID=33
USER_GID=33
USER_NAME=www-data
- name: Build
run: bin/stack -p${{ matrix.php_version }} build
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: var/cache/composer
key: ${{ runner.os }}-${{ hashFiles('**/composer.codecept-4.json') }}-${{ matrix.codeception_version }}
- name: Install dependencies
run: bin/stack -p${{ matrix.php_version }} -c4 composer_update
- name: Test
run: bin/stack -p${{ matrix.php_version }} test