mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-03 18:04:26 +02:00
Remove all references to travis
This commit is contained in:
2
.gitattributes
vendored
2
.gitattributes
vendored
@@ -11,10 +11,8 @@
|
||||
|
||||
/.gitattributes export-ignore
|
||||
/.gitignore export-ignore
|
||||
/.travis.yml export-ignore
|
||||
/error_reporting.ini export-ignore
|
||||
/make-release.sh export-ignore
|
||||
/phpunit.sh export-ignore
|
||||
/phpunit.xml export-ignore
|
||||
/TODO.md export-ignore
|
||||
/travis.ini export-ignore
|
||||
|
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -1,9 +1,5 @@
|
||||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
|
||||
|
||||
## TODO:
|
||||
## - memcached/mysql services?
|
||||
## - remove travis
|
||||
|
||||
on:
|
||||
- pull_request
|
||||
- push
|
||||
|
28
.travis.yml
28
.travis.yml
@@ -1,28 +0,0 @@
|
||||
language: php
|
||||
os: linux
|
||||
dist: xenial
|
||||
|
||||
install:
|
||||
- travis_retry composer install
|
||||
|
||||
jobs:
|
||||
include:
|
||||
- php: 7.2
|
||||
- php: 7.3
|
||||
- php: 7.4
|
||||
- php: 8.0
|
||||
install: travis_retry composer config platform.php 7.4.0 && composer install
|
||||
fast_finish: true
|
||||
|
||||
services:
|
||||
- memcached
|
||||
- mysql
|
||||
|
||||
before_script:
|
||||
- mysql -e "create database IF NOT EXISTS test;" -uroot
|
||||
|
||||
before_install:
|
||||
- phpenv config-rm xdebug.ini || return 0
|
||||
|
||||
script:
|
||||
- ./phpunit.sh
|
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
- Switch CI from Travis to Github CI
|
||||
- Updated unit tests to avoid skipped and risky test warnings
|
||||
|
||||
### Removed
|
||||
|
@@ -1,7 +1,7 @@
|
||||
# Smarty 3 template engine
|
||||
[smarty.net](https://www.smarty.net/)
|
||||
|
||||
[](https://travis-ci.org/smarty-php/smarty)
|
||||

|
||||
|
||||
## Documentation
|
||||
|
||||
|
@@ -12,5 +12,5 @@ define('PdoCacheEnable', false);
|
||||
define('PdoGzipCacheEnable', false);
|
||||
define('MysqlResourceEnable', false);
|
||||
define('DB_DSN', "mysql:dbname=test;host=localhost");
|
||||
define('DB_USER', "travis");
|
||||
define('DB_USER', "root");
|
||||
define('DB_PASSWD', "");
|
||||
|
@@ -1,2 +0,0 @@
|
||||
extension = "memcache.so"
|
||||
extension = "apc.so"
|
Reference in New Issue
Block a user