>>> ejson: Building testing/ejson 1.2.1-r8 (using abuild 3.9.0-r0) started Wed, 13 Apr 2022 22:34:17 +0000 >>> ejson: Checking sanity of /home/buildozer/aports/testing/ejson/APKBUILD... >>> ejson: Analyzing dependencies... >>> ejson: Installing for build: build-base mandoc go ronn (1/19) Installing mandoc (1.14.6-r1) (2/19) Installing go (1.18.1-r1) (3/19) Installing libffi (3.4.2-r1) (4/19) Installing readline (8.1.2-r0) (5/19) Installing yaml (0.2.5-r0) (6/19) Installing ruby-libs (3.1.2-r0) (7/19) Installing libucontext (1.2-r0) (8/19) Installing ruby (3.1.2-r0) (9/19) Installing ruby-rexml (3.2.5-r2) (10/19) Installing ruby-kramdown (2.3.2-r1) (11/19) Installing ruby-mustache (1.1.1-r5) (12/19) Installing libgpg-error (1.45-r0) (13/19) Installing libgcrypt (1.9.4-r0) (14/19) Installing xz-libs (5.2.5-r1) (15/19) Installing libxml2 (2.9.13-r0) (16/19) Installing libxslt (1.1.35-r0) (17/19) Installing ruby-nokogiri (1.13.4-r0) (18/19) Installing ronn (0.9.1-r1) (19/19) Installing .makedepends-ejson (20220413.223418) Executing busybox-1.35.0-r8.trigger OK: 639 MiB in 108 packages >>> ejson: Cleaning up srcdir >>> ejson: Cleaning up pkgdir >>> ejson: Fetching https://distfiles.alpinelinux.org/distfiles/edge//ejson-1.2.1.tar.gz >>> ejson: Fetching https://distfiles.alpinelinux.org/distfiles/edge//ejson-1.2.1.tar.gz >>> ejson: Checking sha512sums... ejson-1.2.1.tar.gz: OK >>> ejson: Unpacking /var/cache/distfiles/edge/ejson-1.2.1.tar.gz... github.com/Shopify/ejson/vendor/golang.org/x/crypto/salsa20/salsa github.com/Shopify/ejson/vendor/golang.org/x/crypto/curve25519 github.com/Shopify/ejson/vendor/golang.org/x/crypto/poly1305 github.com/Shopify/ejson/vendor/github.com/dustin/gojson github.com/Shopify/ejson/vendor/github.com/codegangsta/cli github.com/Shopify/ejson/vendor/golang.org/x/crypto/nacl/secretbox github.com/Shopify/ejson/vendor/golang.org/x/crypto/nacl/box github.com/Shopify/ejson/crypto github.com/Shopify/ejson/json github.com/Shopify/ejson github.com/Shopify/ejson/cmd/ejson mkdir -p "build/man/man5" set -euo pipefail ; exec ronn -r --pipe "man/man5/ejson.5.ronn" | gzip > "build/man/man5/ejson.5.gz" || (rm -f "man/man5/ejson.5.ronn" ; false) mkdir -p "build/man/man1" set -euo pipefail ; exec ronn -r --pipe "man/man1/ejson-decrypt.1.ronn" | gzip > "build/man/man1/ejson-decrypt.1.gz" || (rm -f "man/man1/ejson-decrypt.1.ronn" ; false) mkdir -p "build/man/man1" set -euo pipefail ; exec ronn -r --pipe "man/man1/ejson-encrypt.1.ronn" | gzip > "build/man/man1/ejson-encrypt.1.gz" || (rm -f "man/man1/ejson-encrypt.1.ronn" ; false) mkdir -p "build/man/man1" set -euo pipefail ; exec ronn -r --pipe "man/man1/ejson-keygen.1.ronn" | gzip > "build/man/man1/ejson-keygen.1.gz" || (rm -f "man/man1/ejson-keygen.1.ronn" ; false) mkdir -p "build/man/man1" set -euo pipefail ; exec ronn -r --pipe "man/man1/ejson.1.ronn" | gzip > "build/man/man1/ejson.1.gz" || (rm -f "man/man1/ejson.1.ronn" ; false) === RUN TestGenerateKeypair GenerateKeypair should return two strings that look key-like ✔✔✔✔ 4 assertions thus far --- PASS: TestGenerateKeypair (0.00s) === RUN TestEncryptFileInPlace EncryptFileInPlace called with a non-existent file should fail with ENOEXIST ✔ called with an invalid JSON file should fail ✔✔ called with an invalid keypair should fail ✔✔ called with a valid keypair ✔ should encrypt the file ✔✔ 12 assertions thus far --- PASS: TestEncryptFileInPlace (1.14s) === RUN TestDecryptFile DecryptFile called with a non-existent file should fail with ENOEXIST ✔ called with an invalid JSON file should fail ✔✔ called with an invalid keypair should fail ✔✔ called with a valid keypair but no corresponding entry in keydir should fail and describe that the key could not be found ✔✔ called with a valid keypair and a corresponding entry in keydir should succeed and output the decrypted secrets ✔✔ called with a valid public key and an short private key supplied via CLI should fail with invalid private key message ✔✔ called with a valid public key and an incorrect private key supplied via CLI should fail with could not decrypt message ✔✔ called with a valid public key and valid private key supplied via CLI should succeed and output the decrypted secrets ✔✔ 27 assertions thus far --- PASS: TestDecryptFile (0.05s) PASS ok github.com/Shopify/ejson 1.194s ? github.com/Shopify/ejson/cmd/ejson [no test files] === RUN TestBoxedMessageRoundtripping BoxedMessage Dump ✔ Load ✔✔✔✔ IsBoxedMessage ✔✔✔✔ 9 assertions thus far --- PASS: TestBoxedMessageRoundtripping (0.00s) === RUN TestKeypairGeneration Generating keypairs should generate something that looks vaguely key-like ✔✔✔✔ should not leave the keys zeroed ✔✔ 15 assertions thus far --- PASS: TestKeypairGeneration (0.00s) === RUN TestNonceGeneration Generating a nonce should be unique ✔ should complete successfully ✔✔ 18 assertions thus far --- PASS: TestNonceGeneration (0.00s) === RUN TestRoundtrip Roundtripping ✔✔✔✔✔✔✔ 25 assertions thus far --- PASS: TestRoundtrip (0.00s) PASS ok github.com/Shopify/ejson/crypto 0.006s === RUN TestKeyExtraction Key extraction succeeds when given properly-formatted EJSON ✔✔ fails if key is too short ✔ or if key is invalid hex ✔ or if key is missing ✔ 5 assertions thus far --- PASS: TestKeyExtraction (0.00s) === RUN TestWalker Walker passes the provided test-cases ✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔ 31 assertions thus far --- PASS: TestWalker (0.00s) PASS ok github.com/Shopify/ejson/json 0.007s >>> ejson: Entering fakeroot... >>> ejson*: Running postcheck for ejson >>> WARNING: ejson*: Found /usr/share/man but package name doesn't end with -doc >>> ejson*: Preparing package ejson... >>> ejson*: Stripping binaries >>> ejson*: Scanning shared objects >>> ejson*: Tracing dependencies... >>> ejson*: Package size: 3.1 MB >>> ejson*: Compressing data... >>> ejson*: Create checksum... >>> ejson*: Create ejson-1.2.1-r8.apk >>> ejson: Build complete at Wed, 13 Apr 2022 22:34:25 +0000 elapsed time 0h 0m 8s >>> ejson: Cleaning up srcdir >>> ejson: Cleaning up pkgdir >>> ejson: Uninstalling dependencies... (1/19) Purging .makedepends-ejson (20220413.223418) (2/19) Purging mandoc (1.14.6-r1) Executing mandoc-1.14.6-r1.post-deinstall (3/19) Purging go (1.18.1-r1) (4/19) Purging ronn (0.9.1-r1) (5/19) Purging ruby-kramdown (2.3.2-r1) (6/19) Purging ruby-rexml (3.2.5-r2) (7/19) Purging ruby-mustache (1.1.1-r5) (8/19) Purging ruby-nokogiri (1.13.4-r0) (9/19) Purging ruby (3.1.2-r0) (10/19) Purging ruby-libs (3.1.2-r0) (11/19) Purging libffi (3.4.2-r1) (12/19) Purging readline (8.1.2-r0) (13/19) Purging yaml (0.2.5-r0) (14/19) Purging libucontext (1.2-r0) (15/19) Purging libxslt (1.1.35-r0) (16/19) Purging libgcrypt (1.9.4-r0) (17/19) Purging libgpg-error (1.45-r0) (18/19) Purging libxml2 (2.9.13-r0) (19/19) Purging xz-libs (5.2.5-r1) Executing busybox-1.35.0-r8.trigger OK: 229 MiB in 89 packages >>> ejson: Updating the testing/ppc64le repository index... >>> ejson: Signing the index...