From bb9a56bcac19618e0ae14cef214c2b0c2d3b4441 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Tue, 5 Jan 2021 23:48:03 +0900 Subject: [PATCH] Remove .travis.yml --- .gitattributes | 1 - .travis.yml | 27 --------------------------- 2 files changed, 28 deletions(-) delete mode 100644 .travis.yml diff --git a/.gitattributes b/.gitattributes index d8bbc742e..f586df60d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,4 @@ .gitattributes export-ignore .github export-ignore .gitignore export-ignore -.travis.yml export-ignore /tests/ export-ignore diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 951bd0c8e..000000000 --- a/.travis.yml +++ /dev/null @@ -1,27 +0,0 @@ -os: linux -dist: xenial -language: php -php: - - 7.0 - - 7.1 - - 7.2 - - 7.3 - - 7.4 -jobs: - allow_failures: - - php: -services: - - mysql -before_script: - - mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci" - - mysql -u root -e "GRANT ALL PRIVILEGES ON rhymix.* TO travis@localhost" - - mysql -u root -e "SET PASSWORD FOR travis@localhost = PASSWORD('travis'); FLUSH PRIVILEGES" - - phpenv config-rm xdebug.ini - - wget https://codeception.com/releases/2.3.9/codecept.phar - - php -S localhost:8000 & -script: - - if find . -name "*.php" ! -path "./vendor/*" -print0 | xargs -0 -n 1 -P 8 php -l | grep -v "No syntax errors detected"; then exit 1; fi - - php codecept.phar build - - php codecept.phar run --debug --fail-fast --env travis -notifications: - email: false