From e8f2c2569c77d0b29f2ee2fe833f690514f5629b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 2 Oct 2020 21:28:49 +0200 Subject: [PATCH] Remove travis MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .travis.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1653527da..000000000 --- a/.travis.yml +++ /dev/null @@ -1,36 +0,0 @@ -language: php -services: - - mysql -php: - - 7.3 -env: - - CORE_BRANCH=master DB=mysql - -matrix: - include: - - php: 7.2 - env: "DB=sqlite CORE_BRANCH=stable20" - -before_install: - - export PATH="$PWD/vendor/bin:$PATH" - - phpunit --version - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh - - bash ./before_install.sh deck $CORE_BRANCH $DB - - cd ../server - - ./occ app:enable deck - -before_script: - - cd apps/deck - -script: - - composer install - - make test-unit - -after_success: - - bash <(curl -s https://codecov.io/bash) - -after_failure: - - cat ../../data/nextcloud.log - -notifications: - email: false