add .drone.yml
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
This commit is contained in:
parent
7030127fce
commit
ce2e028559
2 changed files with 18 additions and 0 deletions
12
.drone.yml
Normal file
12
.drone.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: debian
|
||||
|
||||
steps:
|
||||
- name: test
|
||||
image: gcc
|
||||
commands:
|
||||
- ./build-deps.sh
|
||||
- autoreconf -i
|
||||
- ./configure
|
||||
- make
|
6
build-deps.sh
Executable file
6
build-deps.sh
Executable file
|
@ -0,0 +1,6 @@
|
|||
#/bin/bash
|
||||
|
||||
|
||||
apt update
|
||||
apt install -y build-essential zlib1g-dev liblzo2-dev ncurses-dev libreadline-dev
|
||||
|
Loading…
Reference in a new issue