view log » | |
_apply_patch | view log » |
build | view log » |
test | view log » |
gofmt | view log » |
build-bmake | 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 32 33 34 35 |
[#1192946] 2024/04/11 08:53:45 Booting image alpine/latest (default) on port 22270 [#1192946] 2024/04/11 08:53:46 Waiting for guest to settle [#1192946] 2024/04/11 08:53:55 Sending tasks [#1192946] 2024/04/11 08:53:57 Sending build environment [#1192946] 2024/04/11 08:53:57 Installing packages Warning: Permanently added '[localhost]:22270' (ED25519) to the list of known hosts. fetch http://dl-cdn.alpinelinux.org/alpine/v3.19/main/x86_64/APKINDEX.tar.gz fetch http://dl-cdn.alpinelinux.org/alpine/v3.19/community/x86_64/APKINDEX.tar.gz (1/3) Upgrading libcrypto3 (3.1.4-r5 -> 3.1.4-r6) (2/3) Upgrading libssl3 (3.1.4-r5 -> 3.1.4-r6) (3/3) Upgrading openssl (3.1.4-r5 -> 3.1.4-r6) Executing busybox-1.36.1-r15.trigger Executing ca-certificates-20240226-r0.trigger OK: 469 MiB in 140 packages Warning: Permanently added '[localhost]:22270' (ED25519) to the list of known hosts. (1/3) Installing bmake (20231124-r0) (2/3) Installing go (1.21.9-r0) (3/3) Installing scdoc (1.11.2-r0) Executing busybox-1.36.1-r15.trigger OK: 645 MiB in 143 packages [#1192946] 2024/04/11 08:53:59 Cloning repositories Cloning into 'hut'... + cd hut + git submodule update --init --recursive [#1192946] 2024/04/11 08:54:00 Running task _apply_patch [#1192946] 2024/04/11 08:54:01 Running task build [#1192946] 2024/04/11 08:54:11 Running task test [#1192946] 2024/04/11 08:54:15 Running task gofmt [#1192946] 2024/04/11 08:54:15 Running task build-bmake [#1192946] 2024/04/11 08:54:16 Processing post-success triggers for job group... [#1192946] 2024/04/11 08:54:17 Sent build results email to ~kaporos <theo@daron.be> [#1192946] 2024/04/11 08:54:17 Processing post-success triggers... [#1192946] 2024/04/11 08:54:17 Sending webhook... [#1192946] 2024/04/11 08:54:17 Webhook response: 200 [#1192946] 2024/04/11 08:54:17 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 hut + curl -sS https://lists.sr.ht/~emersion/hut-dev/patches/50903/mbox + git am -3 /tmp/50903.patch Applying: adding todo ticket url command |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
+ cd hut + make go build go: downloading git.sr.ht/~emersion/go-scfg v0.0.0-20231211181832-0b4e72d8ec3c go: downloading git.sr.ht/~emersion/gqlclient v0.0.0-20230820050442-8873fe0204b9 go: downloading github.com/dustin/go-humanize v1.0.1 go: downloading github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go: downloading github.com/juju/ansiterm v1.0.0 go: downloading github.com/spf13/cobra v1.8.0 go: downloading golang.org/x/term v0.14.0 go: downloading github.com/spf13/pflag v1.0.5 go: downloading github.com/lunixbochs/vtclean v1.0.0 go: downloading golang.org/x/sys v0.14.0 ./hut completion bash >hut.bash ./hut completion zsh >hut.zsh ./hut completion fish >hut.fish scdoc <doc/hut.1.scd >doc/hut.1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
+ cd hut + go test ./... ? git.sr.ht/~emersion/hut/export [no test files] ? git.sr.ht/~emersion/hut/srht/buildssrht [no test files] ? git.sr.ht/~emersion/hut/srht/gitsrht [no test files] ? git.sr.ht/~emersion/hut/srht/hgsrht [no test files] ? git.sr.ht/~emersion/hut/srht/listssrht [no test files] ? git.sr.ht/~emersion/hut/srht/metasrht [no test files] ? git.sr.ht/~emersion/hut/srht/pagessrht [no test files] ? git.sr.ht/~emersion/hut/srht/pastesrht [no test files] ? git.sr.ht/~emersion/hut/srht/todosrht [no test files] ? git.sr.ht/~emersion/hut/termfmt [no test files] ok git.sr.ht/~emersion/hut 0.001s |
1 2 3 4 5 6 7 8 9 |
+ cd hut + make clean rm -f hut doc/hut.1 hut.bash hut.zsh hut.fish + bmake go build ./hut completion bash >hut.bash ./hut completion zsh >hut.zsh ./hut completion fish >hut.fish scdoc <doc/hut.1.scd >doc/hut.1 |