diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-08-14 12:21:21 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-08-14 12:21:21 +0200 |
commit | e76fc1cf383e2cde4b32cf9cf51b5f68ef30d7ec (patch) | |
tree | ed45d407f1c4773bf6814998374edce536223896 /apps/files_external/3rdparty | |
parent | 00deffdd4780968915ac0ee2b7c3c9da0175dd14 (diff) | |
download | nextcloud-server-e76fc1cf383e2cde4b32cf9cf51b5f68ef30d7ec.tar.gz nextcloud-server-e76fc1cf383e2cde4b32cf9cf51b5f68ef30d7ec.zip |
remove travis files
Diffstat (limited to 'apps/files_external/3rdparty')
-rw-r--r-- | apps/files_external/3rdparty/.gitignore | 2 | ||||
-rw-r--r-- | apps/files_external/3rdparty/icewind/smb/.travis.yml | 58 | ||||
-rwxr-xr-x | apps/files_external/3rdparty/icewind/smb/install_libsmbclient.sh | 8 |
3 files changed, 2 insertions, 66 deletions
diff --git a/apps/files_external/3rdparty/.gitignore b/apps/files_external/3rdparty/.gitignore index 8a84deb27cc..c8d4e6eed0b 100644 --- a/apps/files_external/3rdparty/.gitignore +++ b/apps/files_external/3rdparty/.gitignore @@ -1,2 +1,4 @@ example.php icewind/smb/tests +icewind/smb/install_libsmbclient.sh +icewind/smb/.travis.yml diff --git a/apps/files_external/3rdparty/icewind/smb/.travis.yml b/apps/files_external/3rdparty/icewind/smb/.travis.yml deleted file mode 100644 index bb2a875c393..00000000000 --- a/apps/files_external/3rdparty/icewind/smb/.travis.yml +++ /dev/null @@ -1,58 +0,0 @@ -language: php -php: - - 5.3 - - 5.4 - - 5.5 - - 5.6 - - 7.0 - -env: - - -matrix: - allow_failures: - - php: 7.0 - -env: - global: - - CURRENT_DIR=`pwd` - matrix: - - BACKEND=smbclient - - BACKEND=libsmbclient - -before_install: - - pass=$(perl -e 'print crypt("test", "password")') - - sudo useradd -m -p $pass test - - sudo apt-get update -qq - - sudo apt-get install samba smbclient - - if [ "$BACKEND" == 'libsmbclient' ]; then ./install_libsmbclient.sh; fi - - cd $CURRENT_DIR - - chmod go+w $HOME - - printf "%s\n%s\n" test test|sudo smbpasswd -s test - - sudo mkdir /home/test/test - - sudo chown test /home/test/test - - | - echo "[test] - comment = test - path = /home/test - guest ok = yes - writeable = yes - map archive = yes - map system = yes - map hidden = yes - create mask = 0777 - inherit permissions = yes" | sudo tee -a /etc/samba/smb.conf - - sudo service smbd restart - - testparm -s - -install: - - composer install --dev --no-interaction - -script: - - mkdir -p build/logs - - cd tests - - phpunit --coverage-clover ../build/logs/clover.xml --configuration phpunit.xml - -after_script: - - cd $CURRENT_DIR - - php vendor/bin/coveralls -v diff --git a/apps/files_external/3rdparty/icewind/smb/install_libsmbclient.sh b/apps/files_external/3rdparty/icewind/smb/install_libsmbclient.sh deleted file mode 100755 index 63544e3ee1f..00000000000 --- a/apps/files_external/3rdparty/icewind/smb/install_libsmbclient.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash - -sudo apt-get install libsmbclient-dev libsmbclient -wget -O /tmp/libsmbclient-php.zip https://github.com/eduardok/libsmbclient-php/archive/master.zip -unzip /tmp/libsmbclient-php.zip -d /tmp -cd /tmp/libsmbclient-php-master -phpize && ./configure && make && sudo make install -echo 'extension="libsmbclient.so"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini |