diff --git a/.drone.yml b/.drone.yml index c58af0f..b95327d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,9 +1,10 @@ kind: pipeline type: docker -name: default +name: debian steps: - name: test image: gcc commands: + - ./build-deps.sh - make diff --git a/README.md b/README.md index 368b21e..f549058 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ # shepherd +[![Build Status](http://droneio.service.intern.lab.or.it/api/badges/j3d1/shepherd/status.svg)](http://droneio.service.intern.lab.or.it/j3d1/shepherd) [![Build status](http://atlas.j3d1.de:8050/api/projects/status/ky7t0a756o9wo6b7?svg=true)](http://atlas.j3d1.de:8050/project/AppVeyor/shepherd) diff --git a/build-deps.sh b/build-deps.sh new file mode 100755 index 0000000..86123bb --- /dev/null +++ b/build-deps.sh @@ -0,0 +1,6 @@ +#/bin/bash + + +apt update +apt install -y build-essential libsodium-dev libsqlite3-dev +