Skip to content

Commit 895af7a

Browse files
committed
Revert "Reading DOCKER_TAG in build to split the builds by PHP version"
This reverts commit 4910625
1 parent 4910625 commit 895af7a

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

build/hooks/build

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
#!/usr/bin/env bash
22

3-
if [[ -v DOCKER_TAG ]]; then
4-
if [[ "5.5 5.6 7.0 7.1 7.2" == *"$DOCKER_TAG"* ]]; then
5-
PHP_VERSIONS=$DOCKER_TAG
6-
fi
7-
fi
8-
93
for php_version in $PHP_VERSIONS; do
104
xdebug_version=
115
if [ "$php_version" == "5.5" ] || [ "$php_version" == "5.6" ]; then

build/hooks/post_push

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
#!/usr/bin/env bash
22

3-
if [[ -v DOCKER_TAG ]]; then
4-
if [[ "5.5 5.6 7.0 7.1 7.2" == *"$DOCKER_TAG"* ]]; then
5-
PHP_VERSIONS=$DOCKER_TAG
6-
fi
7-
fi
8-
93
for php_version in $PHP_VERSIONS; do
104
for php_variant in $PHP_VARIANTS; do
115
image_name=jestefane/php-dev:$php_version-$php_variant-$SOURCE_BRANCH

0 commit comments

Comments
 (0)