2019-11-19 12:09:23 +00:00
|
|
|
---
|
2019-12-24 07:51:01 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: debian-unstable
|
|
|
|
|
|
|
|
steps:
|
2019-12-24 09:06:20 +00:00
|
|
|
- name: debian-build
|
2021-07-03 01:13:13 +00:00
|
|
|
image: dankamongmen/unstable_builder:2021-07-02a
|
2020-01-27 07:50:13 +00:00
|
|
|
commands:
|
|
|
|
- export LANG=en_US.UTF-8
|
2021-06-03 05:09:35 +00:00
|
|
|
- export TERM=xterm
|
2020-01-27 07:50:13 +00:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2021-04-10 03:30:16 +00:00
|
|
|
- cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_QRCODEGEN=on
|
2020-11-18 03:42:26 +00:00
|
|
|
- make -j2
|
2021-06-22 22:41:38 +00:00
|
|
|
- ./notcurses-info
|
2021-03-30 21:13:32 +00:00
|
|
|
- ctest --output-on-failure
|
2020-08-21 02:43:46 +00:00
|
|
|
- make install
|
2020-12-16 23:59:37 +00:00
|
|
|
- ldconfig
|
2020-11-22 08:12:08 +00:00
|
|
|
- cd ../cffi
|
2020-08-23 17:04:10 +00:00
|
|
|
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
|
2021-02-27 22:43:52 +00:00
|
|
|
- env LD_LIBRARY_PATH=/usr/local/lib ./notcurses-pydemo > /dev/null
|
2021-02-27 22:50:41 +00:00
|
|
|
- env LD_LIBRARY_PATH=/usr/local/lib ./ncdirect-pydemo > /dev/null
|
2020-12-16 23:59:37 +00:00
|
|
|
- cd ../rust
|
|
|
|
- rustc --version
|
|
|
|
- cargo build
|
2021-02-27 22:43:52 +00:00
|
|
|
- cargo t_all
|
2020-02-01 08:02:48 +00:00
|
|
|
---
|
2020-07-13 10:06:40 +00:00
|
|
|
kind: pipeline
|
2020-02-01 08:02:48 +00:00
|
|
|
type: docker
|
2020-12-16 12:04:42 +00:00
|
|
|
name: alpine-edge
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: alpine-edge
|
2021-07-15 09:03:01 +00:00
|
|
|
image: dankamongmen/edge_builder:2021-07-15a
|
2020-12-16 12:04:42 +00:00
|
|
|
commands:
|
|
|
|
- export LANG=en_US.UTF-8
|
2021-03-29 21:13:51 +00:00
|
|
|
- export TERM=vt100
|
2020-12-16 12:04:42 +00:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2021-04-10 03:30:16 +00:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_PANDOC=off ..
|
2020-12-16 12:04:42 +00:00
|
|
|
- make -j2
|
2021-03-30 21:13:32 +00:00
|
|
|
- ctest --output-on-failure
|
2020-12-16 12:04:42 +00:00
|
|
|
---
|
2020-06-08 07:01:58 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: fedora-rawhide
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fedora-rawhide
|
2021-07-15 09:03:01 +00:00
|
|
|
image: dankamongmen/rawhide:2021-07-15a
|
2020-06-08 07:01:58 +00:00
|
|
|
commands:
|
|
|
|
- export LANG=en_US.UTF-8
|
2021-06-03 05:09:35 +00:00
|
|
|
- export TERM=xterm
|
2020-06-08 07:01:58 +00:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2021-04-10 03:30:16 +00:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_MULTIMEDIA=oiio -DUSE_QRCODEGEN=on ..
|
2020-11-18 03:42:26 +00:00
|
|
|
- make -j2
|
2021-03-30 21:13:32 +00:00
|
|
|
- ctest --output-on-failure
|
2020-12-16 23:59:37 +00:00
|
|
|
- make install
|
|
|
|
- ldconfig
|
|
|
|
- cd ../rust
|
|
|
|
- rustc --version
|
|
|
|
- cargo build
|
2021-02-27 22:43:52 +00:00
|
|
|
- cargo t_all
|
2021-06-22 05:50:21 +00:00
|
|
|
- cd ../cffi
|
|
|
|
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
|
|
|
|
- cd ../python
|
2021-02-27 22:20:14 +00:00
|
|
|
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
|
2021-02-27 22:43:52 +00:00
|
|
|
- env LD_LIBRARY_PATH=/usr/local/lib ./notcurses-pydemo > /dev/null
|
2021-02-27 22:50:41 +00:00
|
|
|
- env LD_LIBRARY_PATH=/usr/local/lib ./ncdirect-pydemo > /dev/null
|
2020-12-22 00:28:22 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2021-02-18 09:10:36 +00:00
|
|
|
name: ubuntu-hirsute
|
2020-12-22 00:28:22 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: ubuntu-build
|
2021-07-02 23:29:57 +00:00
|
|
|
image: dankamongmen/hirsute:2021-07-02a
|
2020-12-22 00:28:22 +00:00
|
|
|
commands:
|
2020-12-29 00:53:03 +00:00
|
|
|
- export LANG=es_ES.UTF-8
|
2021-02-27 22:43:52 +00:00
|
|
|
- export TERM=xterm
|
2020-12-22 00:28:22 +00:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2021-04-10 03:30:16 +00:00
|
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_QRCODEGEN=on -DUSE_MULTIMEDIA=none ..
|
2020-12-22 00:28:22 +00:00
|
|
|
- make -j2
|
2021-03-30 21:13:32 +00:00
|
|
|
- ctest --output-on-failure
|
2020-12-22 00:28:22 +00:00
|
|
|
- make install
|
|
|
|
- ldconfig
|
|
|
|
- cd ../cffi
|
|
|
|
- python3 setup.py sdist build
|
2021-06-22 05:50:21 +00:00
|
|
|
- cd ../python
|
|
|
|
- LDFLAGS=-L/usr/local/lib CFLAGS=-I/usr/local/include python3 setup.py sdist build install
|