2021-10-10 17:51:23 +02:00
|
|
|
pipeline:
|
|
|
|
|
codespell:
|
2021-10-23 16:05:00 +02:00
|
|
|
when:
|
|
|
|
|
branch:
|
|
|
|
|
- master
|
|
|
|
|
- releases/*
|
2021-10-10 17:51:23 +02:00
|
|
|
image: alpine:latest
|
|
|
|
|
commands:
|
|
|
|
|
- apk add python3
|
|
|
|
|
- apk add py3-pip
|
|
|
|
|
- pip install codespell
|
|
|
|
|
- codespell -Ldoas README.md INSTALL.md CHANGELOG.md *.c *.h doc/*.scd
|
|
|
|
|
|
|
|
|
|
subprojects:
|
2021-10-23 16:05:00 +02:00
|
|
|
when:
|
|
|
|
|
branch:
|
|
|
|
|
- master
|
|
|
|
|
- releases/*
|
2021-10-10 17:51:23 +02:00
|
|
|
image: alpine:latest
|
|
|
|
|
commands:
|
|
|
|
|
- apk add git
|
|
|
|
|
- mkdir -p subprojects && cd subprojects
|
|
|
|
|
- git clone https://codeberg.org/dnkl/tllist.git
|
|
|
|
|
- git clone https://codeberg.org/dnkl/fcft.git
|
fcft: adapt to API changes in fcft-3.x
Fcft no longer uses wchar_t, but plain uint32_t to represent
codepoints.
Since we do a fair amount of string operations in foot, it still makes
sense to use something that actually _is_ a string (or character),
rather than an array of uint32_t.
For this reason, we switch out all wchar_t usage in foot to
char32_t. We also verify, at compile-time, that char32_t used
UTF-32 (which is what fcft expects).
Unfortunately, there are no string functions for char32_t. To avoid
having to re-implement all wcs*() functions, we add a small wrapper
layer of c32*() functions.
These wrapper functions take char32_t arguments, but then simply call
the corresponding wcs*() function.
For this to work, wcs*() must _also_ be UTF-32 compatible. We can
check for the presence of the __STDC_ISO_10646__ macro. If set,
wchar_t is at least 4 bytes and its internal representation is UTF-32.
FreeBSD does *not* define this macro, because its internal wchar_t
representation depends on the current locale. It _does_ use UTF-32
_if_ the current locale is UTF-8.
Since foot enforces UTF-8, we simply need to check if __FreeBSD__ is
defined.
Other fcft API changes:
* fcft_glyph_rasterize() -> fcft_codepoint_rasterize()
* font.space_advance has been removed
* ‘tags’ have been removed from fcft_grapheme_rasterize()
* ‘fcft_log_init()’ removed
* ‘fcft_init()’ and ‘fcft_fini()’ must be explicitly called
2021-08-21 14:50:42 +02:00
|
|
|
- cd fcft && git checkout 3.0-dev && cd ..
|
2021-10-10 17:51:23 +02:00
|
|
|
- cd ..
|
|
|
|
|
|
|
|
|
|
x64:
|
2021-10-23 16:05:00 +02:00
|
|
|
when:
|
|
|
|
|
branch:
|
|
|
|
|
- master
|
|
|
|
|
- releases/*
|
2021-10-10 17:51:23 +02:00
|
|
|
group: build
|
|
|
|
|
image: alpine:latest
|
|
|
|
|
commands:
|
|
|
|
|
- apk update
|
|
|
|
|
- apk add musl-dev linux-headers meson ninja gcc scdoc ncurses
|
|
|
|
|
- apk add libxkbcommon-dev pixman-dev freetype-dev fontconfig-dev harfbuzz-dev utf8proc-dev
|
|
|
|
|
- apk add wayland-dev wayland-protocols
|
|
|
|
|
- apk add git
|
|
|
|
|
- apk add check-dev
|
|
|
|
|
- apk add ttf-hack font-noto-emoji
|
|
|
|
|
|
|
|
|
|
# Debug
|
|
|
|
|
- mkdir -p bld/debug-x64
|
|
|
|
|
- cd bld/debug-x64
|
2021-11-20 11:24:13 +01:00
|
|
|
- meson --buildtype=debug -Dgrapheme-clustering=enabled -Dfcft:grapheme-shaping=enabled -Dfcft:run-shaping=enabled -Dfcft:test-text-shaping=true ../..
|
2021-10-10 17:51:23 +02:00
|
|
|
- ninja -v -k0
|
|
|
|
|
- ninja -v test
|
2021-10-11 20:16:25 +02:00
|
|
|
- ./foot --version
|
|
|
|
|
- ./footclient --version
|
2021-10-10 17:51:23 +02:00
|
|
|
- cd ../..
|
|
|
|
|
|
|
|
|
|
# Release
|
|
|
|
|
- mkdir -p bld/release-x64
|
|
|
|
|
- cd bld/release-x64
|
2021-11-20 11:24:13 +01:00
|
|
|
- meson --buildtype=release -Dgrapheme-clustering=enabled -Dfcft:grapheme-shaping=enabled -Dfcft:run-shaping=enabled -Dfcft:test-text-shaping=true ../..
|
2021-10-10 17:51:23 +02:00
|
|
|
- ninja -v -k0
|
|
|
|
|
- ninja -v test
|
2021-10-11 20:16:25 +02:00
|
|
|
- ./foot --version
|
|
|
|
|
- ./footclient --version
|
2021-10-10 17:51:23 +02:00
|
|
|
- cd ../..
|
|
|
|
|
|
|
|
|
|
# no grapheme clustering
|
|
|
|
|
- apk del harfbuzz harfbuzz-dev utf8proc utf8proc-dev
|
|
|
|
|
- mkdir -p bld/debug
|
|
|
|
|
- cd bld/debug
|
2021-11-26 20:08:45 +01:00
|
|
|
- meson --buildtype=debug -Dgrapheme-clustering=disabled -Dfcft:grapheme-shaping=disabled -Dfcft:run-shaping=disabled -Dfcft:test-text-shaping=false ../..
|
2021-10-10 17:51:23 +02:00
|
|
|
- ninja -v -k0
|
|
|
|
|
- ninja -v test
|
2021-10-11 20:16:25 +02:00
|
|
|
- ./foot --version
|
|
|
|
|
- ./footclient --version
|
2021-10-10 17:51:23 +02:00
|
|
|
- cd ../..
|
|
|
|
|
|
|
|
|
|
x86:
|
2021-10-23 16:05:00 +02:00
|
|
|
when:
|
|
|
|
|
branch:
|
|
|
|
|
- master
|
|
|
|
|
- releases/*
|
2021-10-10 17:51:23 +02:00
|
|
|
group: build
|
|
|
|
|
image: i386/alpine:latest
|
|
|
|
|
commands:
|
|
|
|
|
- apk update
|
|
|
|
|
- apk add musl-dev linux-headers meson ninja gcc scdoc ncurses
|
|
|
|
|
- apk add libxkbcommon-dev pixman-dev freetype-dev fontconfig-dev harfbuzz-dev utf8proc-dev
|
|
|
|
|
- apk add wayland-dev wayland-protocols
|
|
|
|
|
- apk add git
|
|
|
|
|
- apk add check-dev
|
|
|
|
|
- apk add ttf-hack font-noto-emoji
|
|
|
|
|
|
|
|
|
|
# Debug
|
|
|
|
|
- mkdir -p bld/debug-x86
|
|
|
|
|
- cd bld/debug-x86
|
2021-11-20 11:24:13 +01:00
|
|
|
- meson --buildtype=debug -Dgrapheme-clustering=enabled -Dfcft:grapheme-shaping=enabled -Dfcft:run-shaping=enabled -Dfcft:test-text-shaping=true ../..
|
2021-10-10 17:51:23 +02:00
|
|
|
- ninja -v -k0
|
|
|
|
|
- ninja -v test
|
2021-10-11 20:16:25 +02:00
|
|
|
- ./foot --version
|
|
|
|
|
- ./footclient --version
|
2021-10-10 17:51:23 +02:00
|
|
|
- cd ../..
|
|
|
|
|
|
|
|
|
|
# Release
|
|
|
|
|
- mkdir -p bld/release-x86
|
|
|
|
|
- cd bld/release-x86
|
2021-11-20 11:24:13 +01:00
|
|
|
- meson --buildtype=release -Dgrapheme-clustering=enabled -Dfcft:grapheme-shaping=enabled -Dfcft:run-shaping=enabled -Dfcft:test-text-shaping=true ../..
|
2021-10-10 17:51:23 +02:00
|
|
|
- ninja -v -k0
|
|
|
|
|
- ninja -v test
|
2021-10-11 20:16:25 +02:00
|
|
|
- ./foot --version
|
|
|
|
|
- ./footclient --version
|
2021-10-10 17:51:23 +02:00
|
|
|
- cd ../..
|