2019-11-19 07:09:23 -05:00
|
|
|
---
|
2019-12-24 02:51:01 -05:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: debian-unstable
|
|
|
|
|
|
|
|
steps:
|
2019-12-24 04:06:20 -05:00
|
|
|
- name: debian-build
|
2021-11-14 01:45:22 -05:00
|
|
|
image: dankamongmen/unstable_builder:2021-11-14a
|
2020-01-27 02:50:13 -05:00
|
|
|
commands:
|
|
|
|
- export LANG=en_US.UTF-8
|
2021-06-03 01:09:35 -04:00
|
|
|
- export TERM=xterm
|
2020-01-27 02:50:13 -05:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2021-11-05 09:02:48 -04:00
|
|
|
- cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_GPM=on -DUSE_QRCODEGEN=on
|
2020-11-17 22:42:26 -05:00
|
|
|
- make -j2
|
2021-06-22 18:41:38 -04:00
|
|
|
- ./notcurses-info
|
2021-03-30 17:13:32 -04:00
|
|
|
- ctest --output-on-failure
|
2020-08-20 22:43:46 -04:00
|
|
|
- make install
|
2020-12-17 00:59:37 +01:00
|
|
|
- ldconfig
|
2020-11-22 03:12:08 -05:00
|
|
|
- cd ../cffi
|
2020-08-23 13:04:10 -04:00
|
|
|
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
|
2021-02-27 17:43:52 -05:00
|
|
|
- env LD_LIBRARY_PATH=/usr/local/lib ./notcurses-pydemo > /dev/null
|
2021-02-27 17:50:41 -05:00
|
|
|
- env LD_LIBRARY_PATH=/usr/local/lib ./ncdirect-pydemo > /dev/null
|
2021-11-14 02:41:47 -05:00
|
|
|
# gone until we package libdeflate
|
|
|
|
#---
|
|
|
|
#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
|
|
|
|
# - cmake -DCMAKE_BUILD_TYPE=Release -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-14 05:24:46 -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_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 18:07:39 -04:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: alpine-edge
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: alpine-edge
|
2021-11-14 01:45:22 -05:00
|
|
|
image: dankamongmen/edge_builder:2021-11-14a
|
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
|
|
|
|
- ctest --output-on-failure
|