notcurses/.drone.yml

86 lines
2.2 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
2021-08-19 22:51:33 +00:00
image: dankamongmen/unstable_builder:2021-08-19a
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_QRCODEGEN=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
2020-02-01 08:02:48 +00:00
---
kind: pipeline
2020-02-01 08:02:48 +00:00
type: docker
name: fedora-rawhide
steps:
- name: fedora-rawhide
image: dankamongmen/rawhide:2021-07-15a
commands:
- export LANG=en_US.UTF-8
- export TERM=xterm
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_MULTIMEDIA=oiio -DUSE_QRCODEGEN=on ..
2020-11-18 03:42:26 +00:00
- 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
2021-02-27 22:20:14 +00:00
- 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
2020-12-22 00:28:22 +00:00
---
kind: pipeline
type: docker
2021-08-19 22:51:33 +00:00
name: ubuntu-impish
2020-12-22 00:28:22 +00:00
steps:
- name: ubuntu-build
2021-08-19 22:51:33 +00:00
image: dankamongmen/impish:2021-08-19a
2020-12-22 00:28:22 +00:00
commands:
- export LANG=es_ES.UTF-8
- export TERM=xterm
2020-12-22 00:28:22 +00:00
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_QRCODEGEN=on -DUSE_MULTIMEDIA=none ..
2020-12-22 00:28:22 +00:00
- make -j2
- ctest --output-on-failure
2020-12-22 00:28:22 +00:00
- 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
image: dankamongmen/edge_builder:2021-08-05
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