mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 07:30:25 +00:00
update
This commit is contained in:
parent
a9277a03ef
commit
0a845c303c
2 changed files with 17 additions and 8 deletions
25
.drone.yml
25
.drone.yml
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue