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-07-02 21:13:13 -04:00
|
|
|
image: dankamongmen/unstable_builder:2021-07-02a
|
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-04-09 23:30:16 -04:00
|
|
|
- cmake .. -DCMAKE_BUILD_TYPE=Release -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-08-17 18:35:17 -04:00
|
|
|
- cd ../rust
|
|
|
|
- rustc --version
|
|
|
|
- cargo build
|
2021-08-17 19:12:45 -04:00
|
|
|
#- cargo t_all
|
2020-02-01 03:02:48 -05:00
|
|
|
---
|
2020-07-13 06:06:40 -04:00
|
|
|
kind: pipeline
|
2020-02-01 03:02:48 -05:00
|
|
|
type: docker
|
2020-06-08 03:01:58 -04:00
|
|
|
name: fedora-rawhide
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fedora-rawhide
|
2021-07-15 05:03:01 -04:00
|
|
|
image: dankamongmen/rawhide:2021-07-15a
|
2020-06-08 03:01:58 -04:00
|
|
|
commands:
|
|
|
|
- export LANG=en_US.UTF-8
|
2021-06-03 01:09:35 -04:00
|
|
|
- export TERM=xterm
|
2020-06-08 03:01:58 -04:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2021-04-09 23:30:16 -04:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_MULTIMEDIA=oiio -DUSE_QRCODEGEN=on ..
|
2020-11-17 22:42:26 -05:00
|
|
|
- make -j2
|
2021-03-30 17:13:32 -04:00
|
|
|
- ctest --output-on-failure
|
2020-12-17 00:59:37 +01:00
|
|
|
- make install
|
|
|
|
- ldconfig
|
|
|
|
- cd ../rust
|
|
|
|
- rustc --version
|
|
|
|
- cargo build
|
2021-02-27 17:43:52 -05:00
|
|
|
- cargo t_all
|
2021-06-22 01:50:21 -04:00
|
|
|
- cd ../cffi
|
|
|
|
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
|
|
|
|
- cd ../python
|
2021-02-27 17:20:14 -05: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
|
2020-12-21 19:28:22 -05:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2021-02-18 04:10:36 -05:00
|
|
|
name: ubuntu-hirsute
|
2020-12-21 19:28:22 -05:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: ubuntu-build
|
2021-07-02 19:29:57 -04:00
|
|
|
image: dankamongmen/hirsute:2021-07-02a
|
2020-12-21 19:28:22 -05:00
|
|
|
commands:
|
2020-12-28 19:53:03 -05:00
|
|
|
- export LANG=es_ES.UTF-8
|
2021-02-27 17:43:52 -05:00
|
|
|
- export TERM=xterm
|
2020-12-21 19:28:22 -05:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2021-04-09 23:30:16 -04:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_QRCODEGEN=on -DUSE_MULTIMEDIA=none ..
|
2020-12-21 19:28:22 -05:00
|
|
|
- make -j2
|
2021-03-30 17:13:32 -04:00
|
|
|
- ctest --output-on-failure
|
2020-12-21 19:28:22 -05:00
|
|
|
- make install
|
|
|
|
- ldconfig
|
|
|
|
- cd ../cffi
|
|
|
|
- python3 setup.py sdist build
|
2021-06-22 01:50:21 -04:00
|
|
|
- cd ../python
|
|
|
|
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
|
2021-08-14 12:13:26 -04: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
|