view log » | |
_apply_patch | view log » |
signoff | view log » |
qbe | view log » |
build | view log » |
tests | view log » |
stdlib-tests | view log » |
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 |
[#1264384] 2024/06/30 14:56:30 Booting image alpine/latest (default) on port 22846
[#1264384] 2024/06/30 14:56:31 Waiting for guest to settle
[#1264384] 2024/06/30 14:56:39 Sending tasks
[#1264384] 2024/06/30 14:56:41 Sending build environment
[#1264384] 2024/06/30 14:56:42 Cloning repositories
Cloning into 'hare'...
+ cd hare
+ git submodule update --init --recursive
Cloning into 'harec'...
+ cd harec
+ git submodule update --init --recursive
Cloning into 'qbe'...
+ cd qbe
+ git submodule update --init --recursive
[#1264384] 2024/06/30 14:56:47 Running task _apply_patch
[#1264384] 2024/06/30 14:56:47 Running task signoff
[#1264384] 2024/06/30 14:56:48 Running task qbe
[#1264384] 2024/06/30 14:56:49 Running task build
[#1264384] 2024/06/30 14:56:50 Processing post-failed triggers...
[#1264384] 2024/06/30 14:56:50 Sending webhook...
[#1264384] 2024/06/30 14:56:50 Webhook response: 200
[#1264384] 2024/06/30 14:56:50 Thanks!
[#1264384] 2024/06/30 14:56:50 Build failed.
[#1264384] 2024/06/30 14:56:50 The build environment will be kept alive for 10 minutes.
[#1264384] 2024/06/30 14:56:50 To log in with SSH and examine it, use the following command:
[#1264384] 2024/06/30 14:56:50
[#1264384] 2024/06/30 14:56:50 ssh -t builds@fra01.builds.sr.ht connect 1264384
[#1264384] 2024/06/30 14:56:50
[#1264384] 2024/06/30 14:56:50 After logging in, the deadline is increased to your remaining build time.
[#1264384] 2024/06/30 15:06:50 Deadline elapsed. Terminating build environment.
[#1264384] 2024/06/30 15:06:50 Error: Running task on guest: exit status 2
|
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 harec + curl -sS https://lists.sr.ht/~sircmpwn/hare-dev/patches/53609/mbox + git am -3 /tmp/53609.patch Applying: add harec(1) man page |
1 2 3 4 |
+ cd harec + '[' patchset = patchset ']' + git log --format=%b 'origin/master^^..' + grep Signed-off-by |
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 |
+ cd qbe + make -j2 PREFIX=/usr cc -std=c99 -g -Wall -Wextra -Wpedantic -c util.c -o util.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c parse.c -o parse.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c abi.c -o abi.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c cfg.c -o cfg.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c mem.c -o mem.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c ssa.c -o ssa.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c alias.c -o alias.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c load.c -o load.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c copy.c -o copy.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c fold.c -o fold.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c simpl.c -o simpl.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c live.c -o live.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c spill.c -o spill.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c rega.c -o rega.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c emit.c -o emit.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c amd64/targ.c -o amd64/targ.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c amd64/sysv.c -o amd64/sysv.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c amd64/isel.c -o amd64/isel.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c amd64/emit.c -o amd64/emit.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c arm64/targ.c -o arm64/targ.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c arm64/abi.c -o arm64/abi.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c arm64/isel.c -o arm64/isel.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c arm64/emit.c -o arm64/emit.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c rv64/targ.c -o rv64/targ.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c rv64/abi.c -o rv64/abi.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c rv64/isel.c -o rv64/isel.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c rv64/emit.c -o rv64/emit.o cc -std=c99 -g -Wall -Wextra -Wpedantic -c main.c -o main.o cc main.o util.o parse.o abi.o cfg.o mem.o ssa.o alias.o load.o copy.o fold.o simpl.o live.o spill.o rega.o emit.o amd64/targ.o amd64/sysv.o amd64/isel.o amd64/emit.o arm64/targ.o arm64/abi.o arm64/isel.o arm64/emit.o rv64/targ.o rv64/abi.o rv64/isel.o rv64/emit.o -o qbe + sudo make install PREFIX=/usr mkdir -p "/usr/bin" install -m755 qbe "/usr/bin/qbe" |
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 |
+ cd harec + cp configs/linux.mk config.mk + make -j2 CC src/check.o CC src/emit.o CC src/eval.o CC src/expr.o CC src/gen.o CC src/genutil.o CC src/identifier.o CC src/lex.o CC src/main.o CC src/mod.o CC src/parse.o CC src/qbe.o CC src/qinstr.o CC src/qtype.o CC src/scope.o CC src/type_store.o CC src/typedef.o CC src/types.o CC src/utf8.o CC src/util.o SCDOC docs/harec.1 /bin/sh: scdoc: not found make: *** [Makefile:106: docs/harec.1] Error 127 make: *** Waiting for unfinished jobs.... |