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

---
kind: pipeline
type: docker
name: debian-unstable
steps:
- name: debian-build
image: dankamongmen/unstable_builder:2020-11-26b
commands:
- export LANG=en_US.UTF-8
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release
- make -j2
- env TERM=xterm make test
- make install
- cd ../cffi
- 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-11-21a
commands:
- export LANG=en_US.UTF-8
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_MULTIMEDIA=none ..
- make -j2
- env TERM=xterm make test
- make install
- ldconfig
- cd ../cffi
- 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/fedora34:2020-11-17a
commands:
- export LANG=en_US.UTF-8
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_MULTIMEDIA=oiio ..
- make -j2
- env TERM=xterm make test