Skip to content

Commit 877c55d

Browse files
committed
test
1 parent e97f0a1 commit 877c55d

11 files changed

+15
-15
lines changed

bin/compile-extension-amqp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ git clone https://github.com/alanxz/rabbitmq-c.git
1111
pushd rabbitmq-c
1212
git submodule init
1313
git submodule update
14-
autoreconf -i && ./configure --prefix $INSTALL_DEST/$VERSION && make && sudo make install
14+
autoreconf -i && ./configure --prefix $INSTALL_DEST/$VERSION && make && make install
1515

1616
popd
1717

1818
git clone https://github.com/pdezwart/php-amqp.git
1919
pushd php-amqp
2020

2121
phpize
22-
./configure && make && sudo make install
22+
./configure && make && make install
2323
popd
2424

2525
travis_time_finish

bin/compile-extension-memcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^8 && ! $VERSION =~ ^master$ ]]; then
1010
tar zxvf memcache*.tgz && pushd memcache*/
1111
make clean || true
1212
phpize
13-
./configure && make && sudo make install
13+
./configure && make && make install
1414
popd
1515
fi
1616

bin/compile-extension-memcached

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function install_memcache() {
88
wget https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz
99
tar xzf libmemcached-1.0.18.tar.gz
1010
pushd libmemcached-1.0.18
11-
./configure --prefix=$INSTALL_DEST/$VERSION && make && sudo make install
11+
./configure --prefix=$INSTALL_DEST/$VERSION && make && make install
1212
popd
1313
popd
1414
}
@@ -27,7 +27,7 @@ else
2727
make clean || true
2828
fi
2929
phpize
30-
./configure --with-libmemcached-dir=$INSTALL_DEST/$VERSION && make && sudo make install
30+
./configure --with-libmemcached-dir=$INSTALL_DEST/$VERSION && make && make install
3131
popd
3232

3333
travis_time_finish

bin/compile-extension-mongo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [[ ! $VERSION =~ ^7 && ! $VERSION =~ ^8 && ! $VERSION =~ ^master$ ]]; then
1010
pushd mongo-php-driver-legacy
1111
git checkout 1.6.16
1212
phpize
13-
./configure && make && sudo make install
13+
./configure && make && make install
1414
popd
1515
fi
1616

bin/compile-extension-mongodb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [[ $VERSION =~ ^master$ || $VERSION =~ snapshot$ ]]; then
1212
phpize
1313
./configure
1414
make all
15-
sudo make install
15+
make install
1616
popd
1717
else
1818
no | pecl_install mongodb

bin/compile-extension-redis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [[ $VERSION =~ ^8 || $VERSION =~ ^master$ || $VERSION =~ snapshot$ ]]; then
1010
pushd phpredis
1111
# git checkout php7
1212
phpize
13-
./configure && make && sudo make install || exit 1
13+
./configure && make && make install || exit 1
1414
popd
1515
elif [[ $VERSION =~ ^7 ]]; then
1616
pecl_install redis

bin/compile-extension-zmq

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ sudo apt-get install libzmq3-dev
1212

1313
if [[ $VERSION =~ ^7 || $VERSION =~ ^8 || $VERSION =~ ^master$ ]]; then
1414
phpize
15-
./configure && make && sudo make install
15+
./configure && make && make install
1616
else
1717
if [[ $(lsb_release -cs) == precise ]]; then
1818
sudo -E add-apt-repository -y ppa:travis-ci/zero-mq
1919
sudo apt-get update -qq
2020
fi
2121
git checkout 1.1.2
2222
phpize
23-
./configure && make && sudo make install
23+
./configure && make && make install
2424
fi
2525

2626
popd

bin/install-icu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pushd icu/source
1717
make
1818
# remove $ICU_RELEASE so that we have a prestine installation of icu there
1919
rm -rf $ICU_INSTALL_DIR
20-
sudo make install
20+
make install
2121
popd
2222

2323
# PHP >= 7.4 exclusively uses pkg-config for ICU

bin/install-libsodium

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ git clone -b stable https://github.com/jedisct1/libsodium.git
1717
pushd libsodium
1818
./configure --prefix=$LIBSODIUM_INSTALL_DIR
1919
make check
20-
sudo make install
20+
make install
2121
popd
2222

2323
# add the option in custom_configure_options

bin/install-libzip

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if [[ $HOSTTYPE == "powerpc64le" || $HOSTTYPE == "s390x"|| $HOSTTYPE == "aarch64
2222
then
2323
wget -O - https://cmake.org/files/v3.14/cmake-3.14.0.tar.gz | tar -xz --strip-components=1
2424
#compile cmake
25-
./configure > /dev/null 2>&1 && make > /dev/null 2>&1 && sudo make install > /dev/null 2>&1
25+
./configure > /dev/null 2>&1 && make > /dev/null 2>&1 && make install > /dev/null 2>&1
2626
else
2727
wget https://github.com/Kitware/CMake/releases/download/v3.14.0/cmake-3.14.0-Linux-x86_64.sh
2828
sudo sh cmake-3.14.0-Linux-x86_64.sh --prefix=/usr --skip-license
@@ -34,7 +34,7 @@ git clone -b rel-1-5-2 https://github.com/nih-at/libzip.git
3434
pushd libzip
3535
cmake -DCMAKE_INSTALL_PREFIX=$LIBZIP_INSTALL_DIR .
3636
make
37-
sudo make install
37+
make install
3838
popd
3939

4040
# add the option in custom_configure_options

0 commit comments

Comments
 (0)