Remove all references to travis

This commit is contained in:
Simon Wisselink
2021-01-08 14:39:02 +01:00
parent 7050ff710a
commit 24dbbef340
7 changed files with 3 additions and 38 deletions

2
.gitattributes vendored
View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -1,7 +1,7 @@
# Smarty 3 template engine
[smarty.net](https://www.smarty.net/)
[![Build Status](https://travis-ci.org/smarty-php/smarty.svg?branch=master)](https://travis-ci.org/smarty-php/smarty)
![CI](https://github.com/smarty-php/smarty/workflows/CI/badge.svg)
## Documentation

View File

@@ -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', "");

View File

@@ -1,2 +0,0 @@
extension = "memcache.so"
extension = "apc.so"