This commit is contained in:
Bozhidar 2024-05-03 18:16:36 +03:00
parent a9277a03ef
commit 0a845c303c
2 changed files with 17 additions and 8 deletions

View file

@ -1,6 +1,6 @@
--- ---
kind: pipeline kind: pipeline
name: Ubuntu 20.04 name: Ubuntu 22.04
steps: steps:
- name: run unit tests - name: run unit tests
image: ubuntu:22.04 image: ubuntu:22.04
@ -24,19 +24,28 @@ steps:
- COMPOSER_ALLOW_SUPERUSER=1 phyre-php composer.phar install - COMPOSER_ALLOW_SUPERUSER=1 phyre-php composer.phar install
- /phyre-panel/install_web.sh - /phyre-panel/install_web.sh
- phyre-php artisan test - phyre-php artisan test
- name: codecov # - name: codecov
image: robertstettner/drone-codecov # image: robertstettner/drone-codecov
settings: # settings:
token: ${CODECOV_TOKEN} # token: ${CODECOV_TOKEN}
files: /usr/local/phyre/web/clover.xml # files: /usr/local/phyre/web/clover.xml
--- ---
kind: pipeline kind: pipeline
name: Debian Bullseye name: Debian Latest
steps: steps:
- name: run unit tests - name: run unit tests
image: debian:bullseye image: debian:latest
environment: environment:
DEBIAN_FRONTEND: noninteractive DEBIAN_FRONTEND: noninteractive
commands: commands:
- apt-get update - apt-get update
---
kind: pipeline
name: CentOS Latest
steps:
- name: run unit tests
image: centos:latest
commands:
- apt-get update