File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed
build/ansible/group_vars/all Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -534,12 +534,12 @@ RUN set -eux \
534
534
535
535
# -------------------- Installing PHP Extension: phalcon --------------------
536
536
RUN set -eux \
537
- # Installation: Generic
537
+ # Installation: Version specific
538
538
# Type: GIT extension
539
539
&& git clone https://github.com/phalcon/cphalcon /tmp/phalcon \
540
540
&& cd /tmp/phalcon \
541
541
# Custom: Branch
542
- && git checkout $(git for-each-ref --format='%(*creatordate:raw)%(creatordate:raw) %(refname)' refs/tags | sort -n | sed 's/^.*tags \/ //g' | grep -E '^v[.0-9]+$' | tail -1) \
542
+ && git checkout v4.1.1 \
543
543
# Custom: Install command
544
544
&& cd build && ./install \
545
545
# Enabling
Original file line number Diff line number Diff line change @@ -524,12 +524,12 @@ RUN set -eux \
524
524
525
525
# -------------------- Installing PHP Extension: phalcon --------------------
526
526
RUN set -eux \
527
- # Installation: Generic
527
+ # Installation: Version specific
528
528
# Type: GIT extension
529
529
&& git clone https://github.com/phalcon/cphalcon /tmp/phalcon \
530
530
&& cd /tmp/phalcon \
531
531
# Custom: Branch
532
- && git checkout $(git for-each-ref --format='%(*creatordate:raw)%(creatordate:raw) %(refname)' refs/tags | sort -n | sed 's/^.*tags \/ //g' | grep -E '^v[.0-9]+$' | tail -1) \
532
+ && git checkout v4.1.2 \
533
533
# Custom: Install command
534
534
&& cd build && ./install \
535
535
# Enabling
Original file line number Diff line number Diff line change @@ -946,6 +946,16 @@ extensions_available:
946
946
git_url : https://github.com/phalcon/cphalcon
947
947
git_ref : v3.4.4
948
948
command : cd build && ./install
949
+ 7.2 :
950
+ type : git
951
+ git_url : https://github.com/phalcon/cphalcon
952
+ git_ref : v4.1.1
953
+ command : cd build && ./install
954
+ 7.3 :
955
+ type : git
956
+ git_url : https://github.com/phalcon/cphalcon
957
+ git_ref : v4.1.2
958
+ command : cd build && ./install
949
959
all :
950
960
type : git
951
961
git_url : https://github.com/phalcon/cphalcon
You can’t perform that action at this time.
0 commit comments