notcurses/.drone.yml
Nick Black ce2a390b52
Out with googletest, in with doctest #202 (#231)
* introduce doctest over googletest #202
* call dtester in in targets
* doctest conversion #202
* channel.cpp -> doctest #202
* egcpool tests -> doctest #202
* input tests to doctester
* zaxis -> doctest
* drone: always define LANG
* libav to doctest #202
* panelreel tests to doctest #202
* spec that a C++17 compiler is now required for doctest #202
* enmetric tests -> doctest #202
* fade tests -> doctest #202
* notcurses test case -> doctest #202
* last conversion to doctest #202
* finish move to doctest #202
* drone: set up make test
2019-12-27 17:20:20 -05:00

41 lines
1005 B
YAML

---
kind: pipeline
type: docker
name: debian-unstable
steps:
- name: debian-build
image: dankamongmen/unstable_builder:2019-12-18
commands:
- apt-get update
- apt-get -y dist-upgrade
- 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 .. -DCMAKE_BUILD_TYPE=Release
- make
- env LANG="en_US.UTF-8" make test
---
kind: pipeline
type: docker
name: ubuntu-focal
steps:
- name: ubuntu-build
image: library/ubuntu:focal
commands:
- apt-get update
- apt-get -y dist-upgrade
- env DEBIAN_FRONTEND=noninteractive apt-get -y install devscripts git-buildpackage equivs 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 .. -DCMAKE_BUILD_TYPE=Release
- make
- env LANG="en_US.UTF-8" make test