notcurses/.drone.yml
Nick Black 16dfe05a93
Build and install Python wrappers #294 (#298)
* cmake: build python extension
* Python: remove obsolete clear_screen_start
* Debian: python3-cffi, not python-cffi
* Debian: add dep on python3-setuptools
* Python: build extension module from CMake #294
* Python: install python wrappers #294
* drone: disable focal for now
2020-01-27 23:10:47 -05:00

39 lines
903 B
YAML

---
kind: pipeline
type: docker
name: debian-unstable
steps:
- name: debian-build
image: dankamongmen/unstable_builder:2020-01-27a
commands:
- apt-get update
- apt-get -y dist-upgrade
- apt-get -y install git-buildpackage
- mk-build-deps --install -t'apt-get -y'
- export LANG=en_US.UTF-8
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release
- make
- make test || ./notcurses-tester -p ../data
#---
#kind: pipeline
#type: docker
#name: ubuntu-focal
#
#steps:
#- name: ubuntu-build
# image: dankamongmen/focal:2020-01-25b
# commands:
# - apt-get update
# - apt-get -y dist-upgrade
# - apt-get -y install git-buildpackage
# - mk-build-deps --install -t'apt-get -y'
# - export LANG=en_US.UTF-8
# - mkdir build
# - cd build
# - cmake .. -DCMAKE_BUILD_TYPE=Release
# - make
# - make test || ./notcurses-tester -p ../data