view log » | |
_apply_patch | view log » |
build | view log » |
check | view log » |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
[#1295127] 2024/08/06 16:59:31 Booting image alpine/edge (default) on port 22592 [#1295127] 2024/08/06 16:59:31 Waiting for guest to settle [#1295127] 2024/08/06 16:59:40 Sending tasks [#1295127] 2024/08/06 16:59:41 Sending build environment [#1295127] 2024/08/06 16:59:42 Cloning repositories Cloning into 'scdoc'... + cd scdoc + git submodule update --init --recursive [#1295127] 2024/08/06 16:59:42 Running task _apply_patch [#1295127] 2024/08/06 16:59:43 Running task build [#1295127] 2024/08/06 16:59:44 Running task check [#1295127] 2024/08/06 16:59:44 Processing post-success triggers for job group... [#1295127] 2024/08/06 16:59:45 Sent build results email to Kirill Chibisov <contact@kchibisov.com> [#1295127] 2024/08/06 16:59:45 Processing post-success triggers... [#1295127] 2024/08/06 16:59:45 Sending webhook... [#1295127] 2024/08/06 16:59:45 Webhook response: 200 [#1295127] 2024/08/06 16:59:45 Thanks! |
1 2 3 4 5 6 7 8 |
+ echo Applying patch from lists.sr.ht Applying patch from lists.sr.ht + git config --global user.name builds.sr.ht + git config --global user.email builds@sr.ht + cd scdoc + curl -sS https://lists.sr.ht/~sircmpwn/public-inbox/patches/54317/mbox + git am -3 /tmp/54317.patch Applying: Emit \(ti and \(ha instead of ~ and ^ |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
+ cd scdoc + make cc -std=c99 -pedantic -c -o .build/main.o -g -DVERSION='"1.11.3"' -Wall -Wextra -Werror -Wno-unused-parameter -Iinclude src/main.c cc -std=c99 -pedantic -c -o .build/string.o -g -DVERSION='"1.11.3"' -Wall -Wextra -Werror -Wno-unused-parameter -Iinclude src/string.c cc -std=c99 -pedantic -c -o .build/utf8_chsize.o -g -DVERSION='"1.11.3"' -Wall -Wextra -Werror -Wno-unused-parameter -Iinclude src/utf8_chsize.c cc -std=c99 -pedantic -c -o .build/utf8_decode.o -g -DVERSION='"1.11.3"' -Wall -Wextra -Werror -Wno-unused-parameter -Iinclude src/utf8_decode.c cc -std=c99 -pedantic -c -o .build/utf8_encode.o -g -DVERSION='"1.11.3"' -Wall -Wextra -Werror -Wno-unused-parameter -Iinclude src/utf8_encode.c cc -std=c99 -pedantic -c -o .build/utf8_fgetch.o -g -DVERSION='"1.11.3"' -Wall -Wextra -Werror -Wno-unused-parameter -Iinclude src/utf8_fgetch.c cc -std=c99 -pedantic -c -o .build/utf8_fputch.o -g -DVERSION='"1.11.3"' -Wall -Wextra -Werror -Wno-unused-parameter -Iinclude src/utf8_fputch.c cc -std=c99 -pedantic -c -o .build/utf8_size.o -g -DVERSION='"1.11.3"' -Wall -Wextra -Werror -Wno-unused-parameter -Iinclude src/utf8_size.c cc -std=c99 -pedantic -c -o .build/util.o -g -DVERSION='"1.11.3"' -Wall -Wextra -Werror -Wno-unused-parameter -Iinclude src/util.c cc -static -o scdoc .build/main.o .build/string.o .build/utf8_chsize.o .build/utf8_decode.o .build/utf8_encode.o .build/utf8_fgetch.o .build/utf8_fputch.o .build/utf8_size.o .build/util.o ./scdoc < scdoc.1.scd > scdoc.1 ./scdoc < scdoc.5.scd > scdoc.5 sed -e 's:@prefix@:/usr/local:g' -e 's:@version@:1.11.3:g' < scdoc.pc.in > scdoc.pc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
+ cd scdoc + make check == test/heading Fail on ### OK Expects a space after # OK Emits a new section OK Emits a new subsection OK == test/preamble Expects a name OK Expects a section OK Expects a section within the parentheses OK Expects name to alphanumeric OK Expects section to start with a number OK Expects section to be legit OK Expects section to be legit with subsection OK Expects section not to contain a space OK Accepts a valid preamble OK Accepts a valid preamble with subsection OK Writes the appropriate header OK Preserves dashes OK Handles extra footer field OK Handles both extra fields OK Emits empty footer correctly OK Supports $SOURCE_DATE_EPOCH OK == test/indent Indents indented text OK Deindents following indented text OK Disallows multi-step indents OK Allows indentation changes > 1 in literal blocks OK Allows multi-step dedents OK Allows indented literal blocks OK Disallows dedenting in literal blocks OK == test/comments Ignore comments OK Fail on invalid comments OK == test/inline-formatting Disallows nested formatting OK Ignores underscores in words OK Ignores underscores in underlined words OK Ignores underscores in bolded words OK Emits bold text OK Emits underlined text OK Handles escaped characters OK == test/line-breaks Handles line break OK Disallows empty line after line break OK Leave single + OK Leave double + without newline OK Handles underlined text following line break OK Suppresses sentence spacing OK == test/character-substitute Substitute ~ with \(ti OK Substitute ^ with \(ha OK == test/tables Handles empty table cells OK Disallows differing row lengths OK |