mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-05 19:04:27 +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
|
/.gitattributes export-ignore
|
||||||
/.gitignore export-ignore
|
/.gitignore export-ignore
|
||||||
/.travis.yml export-ignore
|
|
||||||
/error_reporting.ini export-ignore
|
/error_reporting.ini export-ignore
|
||||||
/make-release.sh export-ignore
|
/make-release.sh export-ignore
|
||||||
/phpunit.sh export-ignore
|
/phpunit.sh export-ignore
|
||||||
/phpunit.xml export-ignore
|
/phpunit.xml export-ignore
|
||||||
/TODO.md 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
|
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
|
||||||
|
|
||||||
## TODO:
|
|
||||||
## - memcached/mysql services?
|
|
||||||
## - remove travis
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
- pull_request
|
- pull_request
|
||||||
- push
|
- 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]
|
## [Unreleased]
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
- Switch CI from Travis to Github CI
|
||||||
- Updated unit tests to avoid skipped and risky test warnings
|
- Updated unit tests to avoid skipped and risky test warnings
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
# Smarty 3 template engine
|
# Smarty 3 template engine
|
||||||
[smarty.net](https://www.smarty.net/)
|
[smarty.net](https://www.smarty.net/)
|
||||||
|
|
||||||
[](https://travis-ci.org/smarty-php/smarty)
|

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