From cf739cfdd8f61080de6265fcf8bb35f734e309cc Mon Sep 17 00:00:00 2001 From: Thomas Flori <t.flori@sportradar.com> Date: Fri, 22 Sep 2023 11:37:26 +0200 Subject: [PATCH] add gitlab-ci configuration --- .gitlab-ci.yml | 27 +++++++++++++++++++++++++++ composer.json | 10 +++++++--- 2 files changed, 34 insertions(+), 3 deletions(-) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e5f3d9f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,27 @@ +stages: + - test + - publish + +phpunit: + stage: test + needs: [] + parallel: + matrix: + - PHP_VERSION: [7.4, 8.0, 8.1, 8.2] + image: iras/php-composer:${PHP_VERSION} + before_script: + - composer install + script: + - bin/phpunit --coverage-text + +packagist: + stage: publish + needs: [phpunit] + image: alpine/3.18 + before_script: + - apk add --no-cache curl + script: + - | + curl -XPOST -H'content-type:application/json' + 'https://packagist.org/api/update-package?username=tflori&apiToken='${PACKAGIST_API_TOKEN} + -d'{"repository":{"url":"riki/quickstart"}} diff --git a/composer.json b/composer.json index 33479e4..787aeae 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,9 @@ { "name": "riki/quickstart", - "description": "", + "description": "quickstart for a php application using riki-framework", "type": "project", "license": "MIT", - "minimum-stability": "rc", + "minimum-stability": "RC", "config": { "bin-dir": "bin" }, @@ -38,7 +38,11 @@ }, "scripts": { "start": "php -S localhost:8080 -t public public/routing.php", - "cli": "quickstart", "test": "phpunit" + }, + "archive": { + "exclude": [ + ".gitlab-ci.yml" + ] } } -- GitLab