Skip to content

Commit 78227bf

Browse files
committed
Disable deployer for PHP 5.2 and PHP 5.3
1 parent 5c1ae24 commit 78227bf

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

Dockerfiles/work/Dockerfile-5.2

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,6 @@ RUN set -x \
127127
&& npm install -g mdlint \
128128
&& npm install -g gulp \
129129
\
130-
# deployer
131-
&& curl https://deployer.org/deployer.phar -L -o /usr/local/bin/dep \
132-
&& chmod +x /usr/local/bin/dep \
133130
# gitflow
134131
&& git clone git://github.com/petervanderdoes/gitflow.git /tmp/gitflow \
135132
&& cd /tmp/gitflow \
@@ -259,7 +256,6 @@ RUN set -x \
259256
&& mdlint --version | grep -E '[.0-9]+' \
260257
&& gulp --version | grep -E '[.0-9]+' \
261258
\
262-
&& dep --version 2>/dev/null | grep -E 'Deployer\s*[.0-9]+' \
263259
&& git-flow version | grep -E '[.0-9]+' \
264260
&& grunt --version | grep -E '[.0-9]+' \
265261
&& linkcheck --version | grep -E '^linkcheck\sv[.0-9]+' \

Dockerfiles/work/Dockerfile-5.3

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,6 @@ RUN set -x \
133133
&& COMPOSER_HOME="/usr/local/src/composer" composer global require codeception/codeception --dev \
134134
&& ln -s /usr/local/src/composer/vendor/codeception/codeception/codecept /usr/local/bin/codecept \
135135
\
136-
# deployer
137-
&& curl https://deployer.org/deployer.phar -L -o /usr/local/bin/dep \
138-
&& chmod +x /usr/local/bin/dep \
139136
# drush
140137
&& git clone https://github.com/drush-ops/drush.git /usr/local/src/drush \
141138
&& cd /usr/local/src/drush \
@@ -299,7 +296,6 @@ RUN set -x \
299296
&& gulp --version | grep -E '[.0-9]+' \
300297
\
301298
&& codecept --version 2>/dev/null | grep -E '^Codeception(\sversion)?\s[.0-9]+$' \
302-
&& dep --version 2>/dev/null | grep -E 'Deployer\s*[.0-9]+' \
303299
&& drush --version | grep -E '[.0-9]+' \
304300
&& git-flow version | grep -E '[.0-9]+' \
305301
&& grunt --version | grep -E '[.0-9]+' \

build/ansible/group_vars/all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ software_available:
335335
all:
336336
command: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
337337
deployer:
338-
disabled: []
338+
disabled: [5.2, 5.3]
339339
check: dep --version 2>/dev/null | grep -E 'Deployer\s*[.0-9]+'
340340
all:
341341
command: curl https://deployer.org/deployer.phar -L -o /usr/local/bin/dep

0 commit comments

Comments
 (0)