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

58 lines
1.3 KiB
YAML

5 years ago
---
kind: pipeline
type: docker
name: debian-unstable
steps:
5 years ago
- name: debian-build
image: dankamongmen/unstable_builder:2020-11-17b
commands:
- export LANG=en_US.UTF-8
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release
- make
- env TERM=xterm make test
- make install
- cd ../python
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
- env TERM=xterm LD_LIBRARY_PATH=/usr/local/lib ./notcurses-pydemo > /dev/null
- env TERM=xterm LD_LIBRARY_PATH=/usr/local/lib ./notcurses-direct-pydemo > /dev/null
---
kind: pipeline
type: docker
name: ubuntu-focal
steps:
- name: ubuntu-build
image: dankamongmen/groovy:2020-10-25a
commands:
- export LANG=en_US.UTF-8
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_MULTIMEDIA=none ..
- make
- env TERM=xterm make test
- make install
- ldconfig
- cd ../python
- python3 setup.py sdist build
- cd ../rust
- cargo build
- env TERM=xterm cargo t_all
---
kind: pipeline
type: docker
name: fedora-rawhide
steps:
- name: fedora-rawhide
image: dankamongmen/fedora33:2020-10-25a
commands:
- export LANG=en_US.UTF-8
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_MULTIMEDIA=oiio ..
- make
- env TERM=xterm make test