Update .drone.yml

This commit is contained in:
Bozhidar 2024-05-04 03:53:37 +03:00
parent 6f77fb20e5
commit 865ef47c2f

View file

@ -1,3 +1,26 @@
---
kind: pipeline
name: CentOS
steps:
- name: run unit tests
image: centos:latest
commands:
- mkdir /phyre-panel
- cp installers/centos-stream-9/install-partial/install_base.sh /phyre-panel/install_base.sh
- chmod +x /phyre-panel/install_base.sh
- /phyre-panel/install_base.sh
---
kind: pipeline
name: Debian 12
steps:
- name: run unit tests
image: debian:12
environment:
DEBIAN_FRONTEND: noninteractive
commands:
- apt-get update
---
kind: pipeline
name: Ubuntu 22.04
@ -29,14 +52,3 @@ steps:
# settings:
# token: ${CODECOV_TOKEN}
# files: /usr/local/phyre/web/clover.xml
---
kind: pipeline
name: Debian 12
steps:
- name: run unit tests
image: debian:12
environment:
DEBIAN_FRONTEND: noninteractive
commands:
- apt-get update