We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a4dda8 commit 07c4845Copy full SHA for 07c4845
2 files changed
.travis.yml
@@ -9,7 +9,7 @@ env:
9
- PHP_RUNTIME='php:7.2-cli'
10
- PHP_RUNTIME='php:7.3-cli' CHECK_CS=1
11
- PHP_RUNTIME='php:7.4-cli' PHPUNIT_OPTS='--coverage-text --coverage-clover=coverage.clover'
12
- - PHP_RUNTIME='php:8.0-cli'
+ - PHP_RUNTIME='php:8.0-cli' EXT_DISABLE_DECIMAL=1
13
14
jobs:
15
fast_finish: true
dockerfile.sh
@@ -5,7 +5,7 @@ if [[ -z "$PHP_RUNTIME" ]]; then
5
fi
6
7
RUN_CMDS=''
8
-if [[ $PHP_RUNTIME != php:8* ]]; then
+if [[ -z "$EXT_DISABLE_DECIMAL" || "0" == "$EXT_DISABLE_DECIMAL" || "false" == "$EXT_DISABLE_DECIMAL" ]] ; then
RUN_CMDS="$RUN_CMDS && \\\\\n apt-get install -y libmpdec-dev"
RUN_CMDS="$RUN_CMDS && \\\\\n pecl install decimal && docker-php-ext-enable decimal"
0 commit comments