notcurses/.drone.yml

109 lines
2.9 KiB
YAML
Raw Normal View History

2019-11-19 07:09:23 -05:00
---
kind: pipeline
type: docker
name: debian-unstable
steps:
2019-12-24 04:06:20 -05:00
- name: debian-build
image: dankamongmen/unstable_builder:2021-11-14a
2020-01-27 02:50:13 -05:00
commands:
- export LANG=en_US.UTF-8
- export TERM=xterm
2020-01-27 02:50:13 -05:00
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_STATIC=off -DUSE_GPM=on -DUSE_QRCODEGEN=on -DDFSG_BUILD=on
2020-11-17 22:42:26 -05:00
- make -j2
2022-01-05 16:41:57 -05:00
- ./notcurses-input < /dev/null
2022-01-05 16:37:41 -05:00
- env NOTCURSES_LOGLEVEL=7 ./notcurses-input < notcurses-input
2022-01-05 16:41:57 -05:00
- ./notcurses-input < notcurses-input
2022-01-05 16:37:41 -05:00
#- ./notcurses-info
#- 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
#- 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 15:09:07 -05:00
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_DEFLATE=off -DUSE_MULTIMEDIA=oiio -DUSE_QRCODEGEN=on ..
- make -j2
- ./notcurses-info
- 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 15:09:07 -05: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
- ./notcurses-info
2021-11-25 15:09:07 -05:00
- 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 18:07:39 -04:00
---
kind: pipeline
type: docker
name: alpine-edge
steps:
- name: alpine-edge
2021-11-30 02:10:28 -05:00
image: dankamongmen/edge_builder:2021-11-28a
2021-08-19 18:07:39 -04: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
- ./notcurses-info
2021-08-19 18:07:39 -04:00
- ctest --output-on-failure
2021-12-06 00:51:19 -05:00
---
kind: pipeline
type: docker
name: gentoo
steps:
- name: gentoo
2021-12-18 16:04:49 -05:00
image: dankamongmen/gentoo:2021-12-18a
2021-12-06 00:51:19 -05:00
commands:
2021-12-06 01:13:56 -05:00
- export LANG=C.UTF-8
2021-12-06 00:51:19 -05:00
- export TERM=xterm
- mkdir build
- cd build
2021-12-06 01:10:14 -05:00
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_PANDOC=off -DUSE_DOCTEST=off -DUSE_DEFLATE=off ..
2021-12-06 00:51:19 -05:00
- make -j2
- ./notcurses-info
2021-12-06 00:51:19 -05:00
- ctest --output-on-failure