Added .drone.yml build automation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2020-12-13 23:05:15 +01:00
parent 9f1e105a12
commit c11e148485

34
.drone.yml Normal file
View file

@ -0,0 +1,34 @@
---
kind: pipeline
type: ssh
name: ubuntu-20.04-amd64
server:
host: 172.20.5.6
user: root
ssh_key:
from_secret: ssh_key
steps:
- name: module
commands:
- cd src
- make clean
- make -j $(nproc) CONFIG_UIO=1
---
kind: pipeline
type: ssh
name: ubuntu-18.04-amd64
server:
host: 172.20.5.7
user: root
ssh_key:
from_secret: ssh_key
steps:
- name: module
commands:
- cd src
- make clean
- make -j $(nproc) CONFIG_UIO=1