Attempt to fix tests
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
This commit is contained in:
parent
3215c392aa
commit
7379170ca8
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
@ -1,8 +1,16 @@
|
||||
node {
|
||||
checkout scm
|
||||
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
||||
docker.image('redis:latest').withRun('-p 6379:6379') { d ->
|
||||
docker.image('php:7.2') {
|
||||
docker.image('memcached:latest').withRun('-p 11212:11211') { c ->
|
||||
docker.image('redis:latest').withRun('-p 6380:6379') { d ->
|
||||
docker.image('php:7.4') {
|
||||
steps {
|
||||
sh 'sh build/docker_install.sh > /dev/null'
|
||||
sh 'curl -sS https://getcomposer.org/installer | php'
|
||||
sh 'php composer.phar install --ignore-platform-reqs'
|
||||
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
||||
}
|
||||
}
|
||||
docker.image('php:8') {
|
||||
steps {
|
||||
sh 'sh build/docker_install.sh > /dev/null'
|
||||
sh 'curl -sS https://getcomposer.org/installer | php'
|
||||
|
@ -21,6 +21,12 @@ class ApcuDriverTest extends DriverTestBase {
|
||||
|
||||
public function setup(): void
|
||||
{
|
||||
if ( ! extension_loaded('apcu'))
|
||||
{
|
||||
$this->markTestSkipped();
|
||||
return;
|
||||
}
|
||||
|
||||
$this->driver = new ApcuDriver();
|
||||
$this->driver->flush();
|
||||
}
|
||||
|
@ -21,6 +21,12 @@ class MemcachedDriverTest extends DriverTestBase {
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
if ( ! class_exists('Memcached'))
|
||||
{
|
||||
$this->markTestSkipped();
|
||||
return;
|
||||
}
|
||||
|
||||
$config = [
|
||||
'host' => '127.0.0.1',
|
||||
'port' => 11211
|
||||
@ -28,6 +34,7 @@ class MemcachedDriverTest extends DriverTestBase {
|
||||
if (array_key_exists('MEMCACHED_HOST', $_ENV))
|
||||
{
|
||||
$config['host'] = $_ENV['MEMCACHED_HOST'];
|
||||
$config['port'] = 11212;
|
||||
}
|
||||
|
||||
$this->driver = new MemcachedDriver($config);
|
||||
|
@ -26,7 +26,7 @@ class RedisDriverTest extends DriverTestBase {
|
||||
{
|
||||
$config['scheme'] = 'tcp';
|
||||
$config['host'] = $_ENV['REDIS_HOST'];
|
||||
$config['port'] = 6379;
|
||||
$config['port'] = 6380;
|
||||
}
|
||||
|
||||
$this->driver = new RedisDriver($config);
|
||||
|
Loading…
Reference in New Issue
Block a user