notcurses/.drone.yml

86 lines
2.3 KiB
YAML
Raw Normal View History

2019-11-19 12:09:23 +00:00
---
kind: pipeline
type: docker
name: debian-unstable
steps:
2019-12-24 09:06:20 +00:00
- name: debian-build
image: dankamongmen/unstable_builder:2021-11-14a
2020-01-27 07:50:13 +00:00
commands:
- export LANG=en_US.UTF-8
- export TERM=xterm
2020-01-27 07:50:13 +00:00
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_GPM=on -DUSE_QRCODEGEN=on -DDFSG_BUILD=on
2020-11-18 03:42:26 +00:00
- make -j2
2021-06-22 22:41:38 +00:00
- ./notcurses-info
- ctest --output-on-failure
2020-08-21 02:43:46 +00:00
- make install
- ldconfig
2020-11-22 08:12:08 +00:00
- cd ../cffi
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
- env LD_LIBRARY_PATH=/usr/local/lib ./notcurses-pydemo > /dev/null
- env LD_LIBRARY_PATH=/usr/local/lib ./ncdirect-pydemo > /dev/null
---
kind: pipeline
type: docker
name: fedora-rawhide
steps:
- name: fedora-rawhide
image: dankamongmen/rawhide:2021-11-14a
commands:
- export LANG=en_US.UTF-8
- export TERM=xterm
- mkdir build
- cd build
2021-11-25 20:09:07 +00:00
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_DEFLATE=off -DUSE_MULTIMEDIA=oiio -DUSE_QRCODEGEN=on ..
- make -j2
- ctest --output-on-failure
- make install
- ldconfig
- cd ../cffi
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
- cd ../python
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
- env LD_LIBRARY_PATH=/usr/local/lib ./notcurses-pydemo > /dev/null
- env LD_LIBRARY_PATH=/usr/local/lib ./ncdirect-pydemo > /dev/null
2021-11-25 20:09:07 +00:00
---
kind: pipeline
type: docker
name: ubuntu-jellyfish
steps:
- name: ubuntu-build
image: dankamongmen/impish:2021-11-14b
commands:
- export LANG=es_ES.UTF-8
- export TERM=xterm
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_DOCTEST=off -DUSE_QRCODEGEN=on -DUSE_MULTIMEDIA=none ..
- make -j2
- ctest --output-on-failure
- make install
- ldconfig
- cd ../cffi
- python3 setup.py sdist build
- cd ../python
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
2021-08-19 22:07:39 +00:00
---
kind: pipeline
type: docker
name: alpine-edge
steps:
- name: alpine-edge
2021-11-30 07:10:28 +00:00
image: dankamongmen/edge_builder:2021-11-28a
2021-08-19 22:07:39 +00:00
commands:
- export LANG=en_US.UTF-8
- export TERM=vt100
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_PANDOC=off ..
- make -j2
- ctest --output-on-failure