File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 61
61
fail-fast : false
62
62
env :
63
63
PHP_IMAGE_NAME : " yiisoftware/yii2-php"
64
+ PHP_BASE_IMAGE_VERSION : ${{ matrix.php-base-image-version }}
65
+ DOCKERFILE_FLAVOUR : ${{ matrix.dockerfile-flavour }}
66
+ X_LEGACY_GD_LIB : ${{ matrix.legacy-gd-lib }}
67
+ PECL_XDEBUG_INSTALL_SUFFIX : ${{ matrix.pecl-xdebug-suffix }}
64
68
steps :
65
69
- uses : actions/checkout@v1
66
70
- name : Set version suffix
80
84
docker info
81
85
docker-compose version
82
86
- name : Test
83
- env :
84
- PHP_BASE_IMAGE_VERSION : ${{ matrix.php-base-image-version }}
85
- DOCKERFILE_FLAVOUR : ${{ matrix.dockerfile-flavour }}
86
- X_LEGACY_GD_LIB : ${{ matrix.legacy-gd-lib }}
87
- PECL_XDEBUG_INSTALL_SUFFIX : ${{ matrix.pecl-xdebug-suffix }}
88
87
run : |
89
88
echo "::group::Build output"
90
89
docker-compose build --build-arg X_LEGACY_GD_LIB=$X_LEGACY_GD_LIB
94
93
docker-compose run --rm php php /tests/requirements.php
95
94
docker-compose run --rm -w /yii2 php composer install --prefer-dist
96
95
docker-compose run --rm -w /yii2 php php -d error_reporting="E_ALL ^ E_DEPRECATED" vendor/bin/phpunit tests/framework/ --exclude db
96
+ docker images
97
97
- name : Login to Docker
98
98
if : startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master'
99
99
uses : docker/login-action@v1
You can’t perform that action at this time.
0 commit comments