You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/.drone.yml

41 lines
899 B
YAML

5 years ago
---
5 years ago
kind: pipeline
type: docker
name: debianunstable
5 years ago
steps:
- name: prep
image: dankamongmen/unstable_builder
commands:
- apt-get update
- apt-get -y remove man-db
- apt-get -y install devscripts git-buildpackage locales
- echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen
- locale-gen
- mk-build-deps --install -t'apt-get -y'
- mkdir build
- cd build
- cmake ..
- make
- LANG="en_US.UTF-8" ./notcurses-tester
---
5 years ago
kind: pipeline
type: docker
name: debianstable
5 years ago
steps:
name: prep
image: library/debian:unstable
docker:
tty: true
commands:
- apt-get update
- apt-get -y remove man-db
- apt-get -y install devscripts git-buildpackage locales
- echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen
- locale-gen
- mk-build-deps --install -t'apt-get -y'
- mkdir build
- cd build
- cmake ..
- make
- LANG="en_US.UTF-8" ./notcurses-tester