Skip to content

Commit 16f629d

Browse files
committed
Merge branch 'experiment-feature' into build_native_php
2 parents 4ec39b4 + 9c51dae commit 16f629d

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

.github/workflows/auto-cache-pool-tarball.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
mkdir -p pool/ext
7474
mkdir -p pool/php-tar/
7575
mkdir -p runtime/
76+
test -f runtime/php && rm -f runtime/php
7677
if [ ! -f runtime/php/php ] ; then
7778
bash setup-php-runtime.sh
7879
fi

.github/workflows/linux-aarch64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ jobs:
105105
mkdir -p pool/ext
106106
mkdir -p bin/
107107
mkdir -p runtime/
108+
test -f runtime/php && rm -f runtime/php
108109
if [ ! -f runtime/php/php ] ; then
109110
bash setup-php-runtime.sh
110111
fi

.github/workflows/linux-x86_64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ jobs:
152152
mkdir -p pool/ext
153153
mkdir -p bin/
154154
mkdir -p runtime/
155+
test -f runtime/php && rm -f runtime/php
155156
if [ ! -f runtime/php/php ] ; then
156157
bash setup-php-runtime.sh
157158
fi

.github/workflows/macos-aarch64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ jobs:
103103
mkdir -p pool/ext
104104
mkdir -p bin/
105105
mkdir -p runtime/
106+
test -f runtime/php && rm -f runtime/php
106107
if [ ! -f runtime/php/php ] ; then
107108
bash setup-php-runtime.sh
108109
fi

.github/workflows/macos-x86_64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ jobs:
114114
mkdir -p pool/ext
115115
mkdir -p bin/
116116
mkdir -p runtime/
117+
test -f runtime/php && rm -f runtime/php
117118
if [ ! -f runtime/php/php ] ; then
118119
bash setup-php-runtime.sh
119120
fi

setup-php-runtime.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ mkdir -p bin/
5757
mkdir -p runtime/
5858
mkdir -p var/runtime
5959
APP_RUNTIME_DIR=${__PROJECT__}/runtime/php
60+
test -f ${__PROJECT__}/runtime/php && rm -f ${__PROJECT__}/runtime/php
6061
mkdir -p ${APP_RUNTIME_DIR}
6162

6263
cd ${__PROJECT__}/var/runtime

0 commit comments

Comments
 (0)