From 3489fe490d558d10115c1bf408245e47cef87616 Mon Sep 17 00:00:00 2001 From: Thomas Flori <t.flori@sportradar.com> Date: Fri, 22 Sep 2023 11:52:02 +0200 Subject: [PATCH] add riki command and fix phpunit job --- .gitlab-ci.yml | 10 ++++++++-- bin/.gitignore | 2 +- bin/riki | 10 ++++++++++ 3 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 bin/riki diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e802f4c..238f413 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,10 +9,16 @@ phpunit: matrix: - PHP_VERSION: ['7.4', '8.0', '8.1', '8.2'] image: iras/php-composer:${PHP_VERSION} + cache: + key: php-dependencies-${PHP_VERSION} + paths: + - ./storage/composer before_script: - - composer install + - export COMPOSER_CACHE_DIR=$(pwd)/storage/composer + # basically we are ignoring the composer.lock in tests + - composer update --no-interaction --ansi script: - - bin/phpunit --coverage-text + - bin/phpunit -c phpunit.xml --color=always --coverage-text --coverage-clover=build/logs/clover.xml packagist: stage: publish diff --git a/bin/.gitignore b/bin/.gitignore index f9c4b66..f2f9897 100644 --- a/bin/.gitignore +++ b/bin/.gitignore @@ -1,3 +1,3 @@ /* !/.gitignore -!/cli +!/riki diff --git a/bin/riki b/bin/riki new file mode 100644 index 0000000..8f4bae6 --- /dev/null +++ b/bin/riki @@ -0,0 +1,10 @@ +#!/usr/bin/env php +<?php + +require_once __DIR__ . '/../vendor/autoload.php'; + +$app = new \App\Application(realPath(__DIR__ . '/..')); +$kernel = new \App\Cli\CliKernel($app); +$returnVar = $app->run($kernel); + +exit($returnVar); -- GitLab