Build Information
Successful build of swift-webpush, reference main (70e9c0
), with Swift 6.1 for Android on 30 May 2025 11:55:35 UTC.
Swift 6 data race errors: 2
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mochidev/swift-webpush.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/mochidev/swift-webpush
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 70e9c03 Fixed an issue where Base64-encoded key IDs would fail lookups against the known set of keys
Cloned https://github.com/mochidev/swift-webpush.git
Revision (git rev-parse @):
70e9c03eb355c181ce0f9beada7eac3496d786b5
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/mochidev/swift-webpush.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/mochidev/swift-webpush.git
https://github.com/mochidev/swift-webpush.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "3.10.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-service-lifecycle",
"requirement" : {
"range" : [
{
"lower_bound" : "2.6.2",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/swift-service-lifecycle.git"
},
{
"identity" : "async-http-client",
"requirement" : {
"range" : [
{
"lower_bound" : "1.24.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/async-http-client.git"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.77.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
}
],
"manifest_display_name" : "swift-webpush",
"name" : "swift-webpush",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "WebPush",
"targets" : [
"WebPush"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WebPushTesting",
"targets" : [
"WebPush",
"WebPushTesting"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "WebPushTests",
"module_type" : "SwiftTarget",
"name" : "WebPushTests",
"path" : "Tests/WebPushTests",
"product_dependencies" : [
"AsyncHTTPClient",
"Crypto",
"Logging",
"NIOCore",
"ServiceLifecycle"
],
"sources" : [
"Base64URLCodingTests.swift",
"BytesTests.swift",
"ErrorTests.swift",
"Helpers/MockHTTPClient.swift",
"Helpers/VAPIDConfiguration+Testing.swift",
"MessageSizeTests.swift",
"NeverTests.swift",
"NotificationTests.swift",
"SubscriberTests.swift",
"TopicTests.swift",
"URLOriginTests.swift",
"VAPIDConfigurationTests.swift",
"VAPIDKeyTests.swift",
"VAPIDTokenTests.swift",
"WebPushManagerTests.swift"
],
"target_dependencies" : [
"WebPush",
"WebPushTesting"
],
"type" : "test"
},
{
"c99name" : "WebPushTesting",
"module_type" : "SwiftTarget",
"name" : "WebPushTesting",
"path" : "Sources/WebPushTesting",
"product_dependencies" : [
"Crypto",
"Logging"
],
"product_memberships" : [
"WebPushTesting"
],
"sources" : [
"Subscriber+Testing.swift",
"VAPIDConfiguration+Testing.swift",
"VAPIDKey+Testing.swift",
"WebPushManager+Testing.swift"
],
"target_dependencies" : [
"WebPush"
],
"type" : "library"
},
{
"c99name" : "WebPush",
"module_type" : "SwiftTarget",
"name" : "WebPush",
"path" : "Sources/WebPush",
"product_dependencies" : [
"AsyncHTTPClient",
"Crypto",
"Logging",
"ServiceLifecycle",
"NIOCore",
"NIOHTTP1"
],
"product_memberships" : [
"WebPush",
"WebPushTesting"
],
"sources" : [
"Errors/BadSubscriberError.swift",
"Errors/Base64URLDecodingError.swift",
"Errors/MessageTooLargeError.swift",
"Errors/PushServiceError.swift",
"Errors/UserAgentKeyMaterialError.swift",
"Errors/VAPIDConfigurationError.swift",
"Helpers/DataProtocol+Base64URLCoding.swift",
"Helpers/FixedWidthInteger+BigEndienBytes.swift",
"Helpers/HTTPClientProtocol.swift",
"Helpers/PrintLogHandler.swift",
"Helpers/StringProtocol+UTF8Bytes.swift",
"Helpers/URL+Origin.swift",
"Push Message/Notification.swift",
"Push Message/PushMessage.swift",
"Subscriber.swift",
"Topic.swift",
"VAPID/VAPID.swift",
"VAPID/VAPIDConfiguration.swift",
"VAPID/VAPIDKey.swift",
"VAPID/VAPIDToken.swift",
"WebPushManager.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/swift-server/async-http-client.git
Fetching https://github.com/apple/swift-nio.git
[1/2426] Fetching swift-service-lifecycle
[2330/6262] Fetching swift-service-lifecycle, swift-log
[4632/20276] Fetching swift-service-lifecycle, swift-log, async-http-client
[7988/96387] Fetching swift-service-lifecycle, swift-log, async-http-client, swift-nio
Fetched https://github.com/apple/swift-log.git from cache (0.94s)
[25477/92551] Fetching swift-service-lifecycle, async-http-client, swift-nio
Fetching https://github.com/apple/swift-crypto.git
Fetched https://github.com/swift-server/async-http-client.git from cache (1.13s)
[24402/78537] Fetching swift-service-lifecycle, swift-nio
[46475/92473] Fetching swift-service-lifecycle, swift-nio, swift-crypto
Fetched https://github.com/apple/swift-crypto.git from cache (2.34s)
[71591/78537] Fetching swift-service-lifecycle, swift-nio
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (7.03s)
Fetched https://github.com/apple/swift-nio.git from cache (7.13s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (7.85s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.8.0 (0.85s)
Fetching https://github.com/apple/swift-async-algorithms.git
[1/4985] Fetching swift-async-algorithms
Fetched https://github.com/apple/swift-async-algorithms.git from cache (0.45s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.0.4 (1.22s)
Fetching https://github.com/apple/swift-collections.git
[1/16591] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.75s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (2.95s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (4.00s)
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-atomics.git
[1/1710] Fetching swift-atomics
[1284/6101] Fetching swift-atomics, swift-system
Fetched https://github.com/apple/swift-atomics.git from cache (0.81s)
Fetched https://github.com/apple/swift-system.git from cache (0.84s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (1.87s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (1.11s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.26.1 (1.07s)
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-nio-extras.git
[1/2667] Fetching swift-nio-transport-services
[2668/8581] Fetching swift-nio-transport-services, swift-nio-extras
[3260/14540] Fetching swift-nio-transport-services, swift-nio-extras, swift-algorithms
[3971/26067] Fetching swift-nio-transport-services, swift-nio-extras, swift-algorithms, swift-nio-http2
[10838/40910] Fetching swift-nio-transport-services, swift-nio-extras, swift-algorithms, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.15s)
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (1.15s)
[10574/32329] Fetching swift-algorithms, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-algorithms.git from cache (3.16s)
[25480/26370] Fetching swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-http2.git from cache (3.21s)
[14695/14843] Fetching swift-nio-ssl
Fetched https://github.com/apple/swift-nio-ssl.git from cache (4.69s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (5.80s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (1.01s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.31.0 (1.37s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.27.1 (1.46s)
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-http-structured-headers.git
[1/1590] Fetching swift-asn1
[97/2494] Fetching swift-asn1, swift-http-types
[802/8649] Fetching swift-asn1, swift-http-types, swift-certificates
[1866/9790] Fetching swift-asn1, swift-http-types, swift-certificates, swift-http-structured-headers
Fetched https://github.com/apple/swift-http-types.git from cache (1.01s)
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (1.01s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.01s)
Fetched https://github.com/apple/swift-asn1.git from cache (1.02s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.10.0 (2.18s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (3.07s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (1.06s)
Fetching https://github.com/apple/swift-numerics.git
[1/5706] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.65s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (1.70s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (1.28s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.3.0 (1.01s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.99s)
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.2
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.31.0
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.24.0
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.8.0
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.10.0
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.0.4
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.12.3
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.27.1
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.26.1
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Building for debugging...
[0/808] Write sources
[17/808] Compiling _NumericsShims _NumericsShims.c
[18/808] Write sources
[20/808] Compiling _AtomicsShims.c
[21/808] Write sources
[31/808] Compiling CNIOWindows shim.c
[32/808] Compiling CNIOWindows WSAStartup.c
[33/808] Compiling CNIOWASI CNIOWASI.c
[34/808] Write swift-version-24593BA9C3E375BF.txt
[35/808] Compiling CNIOLinux liburing_shims.c
[36/808] Compiling CNIOLinux shim.c
[37/814] Compiling v3_crld.cc
[38/814] Compiling v3_enum.cc
[39/829] Compiling v3_extku.cc
[40/829] Compiling v3_conf.cc
[41/829] Compiling v3_bitst.cc
[42/829] Compiling v3_cpols.cc
[43/832] Compiling CNIOLLHTTP c_nio_http.c
[44/846] Compiling CNIOLLHTTP c_nio_api.c
[45/846] Compiling CNIOExtrasZlib empty.c
[46/846] Compiling CNIODarwin shim.c
[47/846] Compiling CNIOLLHTTP c_nio_llhttp.c
[48/846] Compiling fiat_p256_adx_sqr.S
[49/846] Compiling fiat_p256_adx_mul.S
[50/846] Compiling fiat_curve25519_adx_square.S
[51/846] Compiling fiat_curve25519_adx_mul.S
[52/846] Compiling CNIOBoringSSLShims shims.c
[54/846] Emitting module InternalCollectionsUtilities
[55/847] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[56/847] Compiling InternalCollectionsUtilities Integer rank.swift
[57/847] Emitting module _NIOBase64
[58/847] Compiling _NIOBase64 Base64.swift
[59/847] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[60/847] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[61/848] Compiling RealModule Real.swift
[62/849] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[63/849] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[64/849] Compiling InternalCollectionsUtilities _SortedCollection.swift
[65/849] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[66/849] Compiling InternalCollectionsUtilities UInt+reversed.swift
[67/849] Compiling ConcurrencyHelpers LockedValueBox.swift
[68/849] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[69/849] Compiling InternalCollectionsUtilities Debugging.swift
[70/849] Compiling InternalCollectionsUtilities Descriptions.swift
[71/849] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[72/849] Compiling _NIODataStructures PriorityQueue.swift
[73/849] Compiling _NIODataStructures _TinyArray.swift
[74/849] Compiling RealModule Float80+Real.swift
[75/849] Compiling RealModule Float16+Real.swift
[78/849] Compiling RealModule ElementaryFunctions.swift
[79/849] Compiling RealModule Float+Real.swift
[80/849] Compiling _NIODataStructures Heap.swift
[81/849] Emitting module _NIODataStructures
[84/850] Emitting module RealModule
[84/850] Compiling tls_record.cc
[88/850] Compiling RealModule RealFunctions.swift
[88/851] Compiling tls_method.cc
[91/851] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[92/852] Compiling tls13_enc.cc
[94/852] Compiling Logging MetadataProvider.swift
[95/852] Emitting module Logging
[96/852] Compiling ConcurrencyHelpers Lock.swift
[97/852] Emitting module ConcurrencyHelpers
[98/853] Compiling Logging Locks.swift
[99/853] Compiling Logging Logging.swift
[100/853] Compiling Logging LogHandler.swift
[100/854] Compiling tls13_server.cc
[101/854] Compiling tls13_both.cc
[104/854] Compiling tls13_client.cc
[105/909] Compiling t1_enc.cc
[107/927] Compiling DequeModule Deque+CustomReflectable.swift
[108/927] Compiling DequeModule Deque+Descriptions.swift
[109/929] Compiling DequeModule _DequeBuffer.swift
[110/929] Compiling DequeModule _DequeBufferHeader.swift
[111/929] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[112/929] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[113/929] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[114/929] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[115/929] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[116/929] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[117/929] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[117/936] Compiling ssl_x509.cc
[119/936] Compiling DequeModule Deque+Testing.swift
[120/936] Compiling DequeModule Deque._Storage.swift
[121/936] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[122/936] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[123/936] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[124/936] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[125/936] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[126/936] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[127/936] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[128/936] Emitting module UnixSignals
[128/936] Compiling ssl_stat.cc
[129/936] Compiling ssl_privkey.cc
[131/936] Compiling DequeModule _DequeSlot.swift
[132/936] Compiling DequeModule _UnsafeWrappedBuffer.swift
[133/936] Compiling DequeModule Deque._UnsafeHandle.swift
[134/936] Compiling DequeModule Deque.swift
[135/936] Compiling DequeModule Deque+Extras.swift
[136/936] Compiling DequeModule Deque+Hashable.swift
[141/936] Compiling UnixSignals UnixSignalsSequence.swift
[142/936] Compiling UnixSignals UnixSignal.swift
[147/937] Compiling DequeModule Deque+Equatable.swift
[148/937] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[150/937] Compiling OrderedCollections OrderedDictionary+Codable.swift
[151/937] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[152/937] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[153/937] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[154/937] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[155/937] Compiling OrderedCollections OrderedDictionary+Elements.swift
[156/937] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[157/937] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[158/937] Compiling DequeModule Deque+Codable.swift
[159/937] Compiling DequeModule Deque+Collection.swift
[167/937] Compiling ssl_versions.cc
[168/937] Compiling ssl_session.cc
[170/937] Emitting module DequeModule
[171/938] Compiling ssl_key_share.cc
[172/938] Compiling ssl_transcript.cc
[174/938] Compiling OrderedCollections OrderedSet+Sendable.swift
[175/938] Compiling OrderedCollections OrderedSet+SubSequence.swift
[176/938] Compiling OrderedCollections OrderedSet+Testing.swift
[177/938] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[178/938] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[179/938] Compiling OrderedCollections OrderedSet.swift
[180/938] Compiling OrderedCollections _UnsafeBitset.swift
[181/938] Compiling OrderedCollections _HashTable+Bucket.swift
[182/938] Compiling OrderedCollections _HashTable+BucketIterator.swift
[183/938] Compiling OrderedCollections _HashTable+Constants.swift
[184/938] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[185/938] Compiling OrderedCollections _HashTable+Testing.swift
[186/938] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[187/938] Compiling OrderedCollections _HashTable.swift
[188/938] Compiling OrderedCollections _Hashtable+Header.swift
[189/938] Compiling OrderedCollections OrderedSet+Initializers.swift
[190/938] Compiling OrderedCollections OrderedSet+Insertions.swift
[191/938] Compiling OrderedCollections OrderedSet+Invariants.swift
[192/938] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[193/938] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[194/938] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[195/938] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[196/938] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[197/938] Emitting module OrderedCollections
[198/939] Compiling ssl_credential.cc
[199/939] Compiling ssl_file.cc
[200/939] Compiling ssl_cipher.cc
[201/939] Compiling ssl_lib.cc
[202/939] Compiling ssl_buffer.cc
[203/939] Compiling ssl_cert.cc
[204/939] Compiling ssl_asn1.cc
[205/939] Compiling s3_pkt.cc
[206/939] Compiling ssl_aead_ctx.cc
[207/939] Compiling s3_lib.cc
[208/939] Compiling s3_both.cc
[209/939] Compiling handshake_server.cc
[210/939] Compiling handoff.cc
[211/939] Compiling handshake_client.cc
[212/939] Compiling handshake.cc
[213/939] Compiling encrypted_client_hello.cc
[214/939] Compiling d1_srtp.cc
[215/939] Compiling md5-x86_64-linux.S
[216/939] Compiling md5-x86_64-apple.S
[217/939] Compiling md5-586-linux.S
[218/939] Compiling dtls_record.cc
[219/939] Compiling dtls_method.cc
[220/939] Compiling md5-586-apple.S
[221/939] Compiling chacha20_poly1305_x86_64-linux.S
[222/939] Compiling extensions.cc
[223/939] Compiling chacha20_poly1305_x86_64-apple.S
[224/939] Compiling chacha20_poly1305_armv8-win.S
[225/939] Compiling chacha20_poly1305_armv8-apple.S
[226/939] Compiling chacha-x86_64-linux.S
[227/939] Compiling chacha20_poly1305_armv8-linux.S
[228/939] Compiling chacha-x86_64-apple.S
[229/939] Compiling chacha-x86-linux.S
[230/939] Compiling chacha-x86-apple.S
[231/939] Compiling chacha-armv8-win.S
[232/939] Compiling chacha-armv8-apple.S
[233/939] Compiling chacha-armv8-linux.S
[234/939] Compiling d1_pkt.cc
[235/939] Compiling chacha-armv4-linux.S
[236/939] Compiling aes128gcmsiv-x86_64-linux.S
[237/939] Compiling aes128gcmsiv-x86_64-apple.S
[238/939] Compiling x86_64-mont5-linux.S
[239/939] Compiling x86_64-mont5-apple.S
[240/939] Compiling x86-mont-linux.S
[241/939] Compiling x86_64-mont-linux.S
[242/939] Compiling x86-mont-apple.S
[243/939] Compiling vpaes-x86_64-linux.S
[244/939] Compiling vpaes-x86_64-apple.S
[245/939] Compiling x86_64-mont-apple.S
[246/939] Compiling vpaes-x86-linux.S
[247/939] Compiling vpaes-x86-apple.S
[248/939] Compiling vpaes-armv8-win.S
[249/939] Compiling vpaes-armv8-apple.S
[250/939] Compiling vpaes-armv8-linux.S
[251/939] Compiling vpaes-armv7-linux.S
[252/939] Compiling sha512-x86_64-linux.S
[253/939] Compiling sha512-x86_64-apple.S
[254/939] Compiling sha512-armv8-win.S
[255/939] Compiling sha512-586-linux.S
[256/939] Compiling sha512-armv8-apple.S
[257/939] Compiling sha512-armv8-linux.S
[258/939] Compiling err_data.cc
[259/939] Compiling sha512-armv4-linux.S
[260/939] Compiling sha512-586-apple.S
[261/939] Compiling sha256-x86_64-linux.S
[262/939] Compiling sha256-armv8-win.S
[263/939] Compiling sha256-x86_64-apple.S
[264/939] Compiling sha256-armv8-apple.S
[265/939] Compiling sha256-armv4-linux.S
[266/939] Compiling sha256-armv8-linux.S
[267/939] Compiling sha256-586-apple.S
[268/939] Compiling sha256-586-linux.S
[269/939] Compiling sha1-x86_64-linux.S
[270/939] Compiling sha1-armv8-win.S
[271/939] Compiling sha1-x86_64-apple.S
[272/939] Compiling sha1-586-linux.S
[273/939] Compiling sha1-586-apple.S
[274/939] Compiling sha1-armv8-apple.S
[275/939] Compiling sha1-armv4-large-linux.S
[276/939] Compiling sha1-armv8-linux.S
[277/939] Compiling rsaz-avx2-linux.S
[278/939] Compiling d1_both.cc
[279/939] Compiling rsaz-avx2-apple.S
[280/939] Compiling rdrand-x86_64-linux.S
[281/939] Compiling p256_beeu-x86_64-asm-linux.S
[282/939] Compiling rdrand-x86_64-apple.S
[283/939] Compiling p256_beeu-x86_64-asm-apple.S
[284/939] Compiling d1_lib.cc
[285/939] Compiling p256_beeu-armv8-asm-win.S
[286/939] Compiling p256_beeu-armv8-asm-apple.S
[287/939] Compiling p256_beeu-armv8-asm-linux.S
[288/939] Compiling p256-x86_64-asm-linux.S
[289/939] Compiling p256-x86_64-asm-apple.S
[290/939] Compiling p256-armv8-asm-win.S
[291/939] Compiling p256-armv8-asm-apple.S
[292/939] Compiling p256-armv8-asm-linux.S
[293/939] Compiling ghashv8-armv8-win.S
[294/939] Compiling ghashv8-armv8-apple.S
[295/939] Compiling ghashv8-armv8-linux.S
[296/939] Compiling ghash-x86_64-apple.S
[297/939] Compiling bio_ssl.cc
[298/939] Compiling ghash-x86_64-linux.S
[299/939] Compiling ghashv8-armv7-linux.S
[300/939] Compiling ghash-x86-linux.S
[301/939] Compiling ghash-x86-apple.S
[302/939] Compiling ghash-ssse3-x86-linux.S
[303/939] Compiling ghash-ssse3-x86_64-linux.S
[304/939] Compiling ghash-ssse3-x86-apple.S
[305/939] Compiling ghash-neon-armv8-win.S
[306/939] Compiling ghash-neon-armv8-apple.S
[307/939] Compiling ghash-ssse3-x86_64-apple.S
[308/939] Compiling co-586-linux.S
[309/939] Compiling ghash-neon-armv8-linux.S
[310/939] Compiling co-586-apple.S
[311/939] Compiling ghash-armv4-linux.S
[312/939] Compiling bsaes-armv7-linux.S
[313/939] Compiling bn-armv8-win.S
[314/939] Compiling bn-armv8-linux.S
[315/939] Compiling bn-armv8-apple.S
[316/939] Compiling bn-586-apple.S
[317/939] Compiling bn-586-linux.S
[318/939] Compiling armv8-mont-win.S
[319/939] Compiling armv8-mont-apple.S
[320/939] Compiling aesv8-gcm-armv8-win.S
[321/939] Compiling armv4-mont-linux.S
[322/939] Compiling armv8-mont-linux.S
[323/939] Compiling aesv8-gcm-armv8-apple.S
[324/939] Compiling aesv8-gcm-armv8-linux.S
[325/939] Compiling aesv8-armv8-linux.S
[326/939] Compiling aesv8-armv8-apple.S
[327/939] Compiling aesv8-armv8-win.S
[328/939] Compiling aesv8-armv7-linux.S
[329/939] Compiling aesni-x86_64-linux.S
[330/939] Compiling aesni-x86_64-apple.S
[331/939] Compiling aesni-gcm-x86_64-linux.S
[332/939] Compiling aesni-gcm-x86_64-apple.S
[333/939] Compiling aesni-x86-apple.S
[334/939] Compiling aesni-x86-linux.S
[335/939] Compiling aes-gcm-avx2-x86_64-linux.S
[336/939] Compiling aes-gcm-avx10-x86_64-linux.S
[336/939] Compiling aes-gcm-avx2-x86_64-apple.S
[338/939] Compiling aes-gcm-avx10-x86_64-apple.S
[339/939] Compiling x_x509.cc
[340/939] Compiling x_x509a.cc
[341/939] Compiling x_sig.cc
[342/939] Compiling x_spki.cc
[343/939] Compiling x_req.cc
[344/939] Compiling x_val.cc
[345/939] Compiling x_pubkey.cc
[346/939] Compiling x_name.cc
[347/939] Compiling x_exten.cc
[348/939] Compiling x509rset.cc
[349/939] Compiling x_attrib.cc
[350/939] Compiling x509name.cc
[351/939] Compiling x_crl.cc
[352/939] Compiling x_algor.cc
[353/939] Compiling x509spki.cc
[354/939] Compiling x_all.cc
[355/939] Compiling x509cset.cc
[356/939] Compiling x509_v3.cc
[357/939] Compiling x509_vpm.cc
[358/939] Compiling x509_txt.cc
[359/939] Compiling x509_req.cc
[360/939] Compiling x509_vfy.cc
[361/939] Compiling x509_set.cc
[362/939] Compiling x509_trs.cc
[363/939] Compiling x509_def.cc
[364/939] Compiling x509_obj.cc
[365/939] Compiling x509_att.cc
[366/939] Compiling x509_d2.cc
[367/939] Compiling x509_lu.cc
[368/939] Compiling x509_ext.cc
[369/939] Compiling x509_cmp.cc
[370/939] Compiling x509.cc
[371/939] Compiling v3_utl.cc
[372/939] Compiling v3_lib.cc
[373/939] Compiling v3_skey.cc
[374/939] Compiling v3_prn.cc
[375/939] Compiling v3_pmaps.cc
[376/939] Compiling v3_ocsp.cc
[377/939] Compiling v3_purp.cc
[378/939] Compiling v3_pcons.cc
[379/939] Compiling v3_ncons.cc
[380/939] Compiling v3_crld.cc
[381/939] Compiling v3_int.cc
[382/939] Compiling v3_info.cc
[383/939] Compiling v3_extku.cc
[384/939] Compiling v3_genn.cc
[385/939] Compiling v3_ia5.cc
[386/939] Compiling v3_enum.cc
[387/939] Compiling v3_cpols.cc
[388/939] Compiling v3_akeya.cc
[389/939] Compiling v3_conf.cc
[390/939] Compiling v3_bcons.cc
[391/939] Compiling v3_bitst.cc
[392/939] Compiling v3_alt.cc
[393/939] Compiling v3_akey.cc
[394/939] Compiling t_x509.cc
[395/939] Compiling t_x509a.cc
[396/939] Compiling t_crl.cc
[397/939] Compiling t_req.cc
[398/939] Compiling rsa_pss.cc
[399/939] Compiling policy.cc
[400/939] Compiling i2d_pr.cc
[401/939] Compiling name_print.cc
[402/939] Compiling algorithm.cc
[403/939] Compiling by_file.cc
[404/939] Compiling asn1_gen.cc
[405/939] Compiling by_dir.cc
[406/939] Compiling a_verify.cc
[407/939] Compiling thread_pthread.cc
[408/939] Compiling a_sign.cc
[409/939] Compiling a_digest.cc
[410/939] Compiling thread_win.cc
[411/939] Compiling voprf.cc
[412/939] Compiling trust_token.cc
[413/939] Compiling pmbtoken.cc
[414/939] Compiling thread.cc
[415/939] Compiling thread_none.cc
[416/939] Compiling stack.cc
[417/939] Compiling sha256.cc
[418/939] Compiling siphash.cc
[419/939] Compiling sha512.cc
[420/939] Compiling spake2plus.cc
[421/939] Compiling slhdsa.cc
[422/939] Compiling sha1.cc
[423/939] Compiling rsa_print.cc
[424/939] Compiling rsa_crypt.cc
[425/939] Compiling rsa_extra.cc
[426/939] Compiling rc4.cc
[427/939] Compiling refcount.cc
[428/939] Compiling windows.cc
[429/939] Compiling rsa_asn1.cc
[430/939] Compiling rand.cc
[431/939] Compiling urandom.cc
[432/939] Compiling passive.cc
[433/939] Compiling trusty.cc
[434/939] Compiling poly1305_arm_asm.S
[435/939] Compiling getentropy.cc
[436/939] Compiling ios.cc
[437/939] Compiling fork_detect.cc
[438/939] Compiling forkunsafe.cc
[439/939] Compiling deterministic.cc
[440/939] Compiling poly1305_vec.cc
[441/939] Compiling poly1305_arm.cc
[442/939] Compiling poly1305.cc
[443/939] Compiling pool.cc
[444/939] Compiling pkcs7.cc
[445/939] Compiling pkcs8.cc
[446/939] Compiling pkcs8_x509.cc
[447/939] Compiling p5_pbev2.cc
[448/939] Compiling pkcs7_x509.cc
[449/939] Compiling pem_pkey.cc
[450/939] Compiling pem_xaux.cc
[451/939] Compiling pem_x509.cc
[452/939] Compiling pem_pk8.cc
[453/939] Compiling mlkem.cc
[454/939] Compiling pem_oth.cc
[455/939] Compiling obj_xref.cc
[456/939] Compiling pem_lib.cc
[457/939] Compiling pem_info.cc
[458/939] Compiling mldsa.cc
[459/939] Compiling obj.cc
[460/939] Compiling pem_all.cc
[461/939] Compiling poly_rq_mul.S
[462/939] Compiling fips_shared_support.cc
[463/939] Compiling mem.cc
[464/939] Compiling md5.cc
[465/939] Compiling md4.cc
[466/939] Compiling lhash.cc
[467/939] Compiling kyber.cc
[468/939] Compiling ex_data.cc
[469/939] Compiling hpke.cc
[470/939] Compiling hrss.cc
[471/939] Compiling scrypt.cc
[472/939] Compiling sign.cc
[473/939] Compiling print.cc
[474/939] Compiling pbkdf.cc
[475/939] Compiling p_x25519.cc
[476/939] Compiling p_rsa.cc
[477/939] Compiling p_ed25519.cc
[478/939] Compiling p_x25519_asn1.cc
[479/939] Compiling p_hkdf.cc
[480/939] Compiling p_rsa_asn1.cc
[481/939] Compiling p_ed25519_asn1.cc
[482/939] Compiling p_ec.cc
[483/939] Compiling p_ec_asn1.cc
[484/939] Compiling p_dh_asn1.cc
[485/939] Compiling evp_ctx.cc
[486/939] Compiling p_dh.cc
[487/939] Compiling p_dsa_asn1.cc
[488/939] Compiling bcm.cc
[489/939] Compiling evp.cc
[490/939] Compiling engine.cc
[491/939] Compiling err.cc
[492/939] Compiling ecdh.cc
[493/939] Compiling evp_asn1.cc
[494/939] Compiling ecdsa_asn1.cc
[495/939] Compiling ec_derive.cc
[496/939] Compiling hash_to_curve.cc
[497/939] Compiling params.cc
[498/939] Compiling ec_asn1.cc
[499/939] Compiling dsa.cc
[500/939] Compiling x25519-asm-arm.S
[501/939] Compiling dsa_asn1.cc
[502/939] Compiling digest_extra.cc
[503/939] Compiling des.cc
[504/939] Compiling dh_asn1.cc
[505/939] Compiling spake25519.cc
[506/939] Compiling curve25519_64_adx.cc
[507/939] Compiling cpu_intel.cc
[508/939] Compiling crypto.cc
[509/939] Compiling curve25519.cc
[509/939] Compiling cpu_arm_linux.cc
[511/939] Compiling cpu_arm_freebsd.cc
[512/939] Compiling cpu_aarch64_win.cc
[513/939] Compiling cpu_aarch64_openbsd.cc
[514/939] Compiling cpu_aarch64_sysreg.cc
[515/939] Compiling cpu_aarch64_linux.cc
[516/939] Compiling cpu_aarch64_fuchsia.cc
[517/939] Compiling cpu_aarch64_apple.cc
[518/939] Compiling conf.cc
[519/939] Compiling tls_cbc.cc
[520/939] Compiling get_cipher.cc
[521/939] Compiling e_tls.cc
[522/939] Compiling e_rc4.cc
[523/939] Compiling e_des.cc
[524/939] Compiling e_null.cc
[525/939] Compiling e_rc2.cc
[526/939] Compiling e_aesgcmsiv.cc
[527/939] Compiling e_chacha20poly1305.cc
[528/939] Compiling e_aesctrhmac.cc
[529/939] Compiling chacha.cc
[530/939] Compiling derive_key.cc
[531/939] Compiling unicode.cc
[532/939] Compiling cbs.cc
[533/939] Compiling cbb.cc
[534/939] Compiling buf.cc
[535/939] Compiling asn1_compat.cc
[536/939] Compiling ber.cc
[537/939] Compiling convert.cc
[538/939] Compiling socket_helper.cc
[538/939] Compiling blake2.cc
[540/939] Compiling bn_asn1.cc
[541/939] Compiling socket.cc
[542/939] Compiling printf.cc
[543/939] Compiling pair.cc
[544/939] Compiling hexdump.cc
[545/939] Compiling fd.cc
[546/939] Compiling errno.cc
[547/939] Compiling file.cc
[548/939] Compiling connect.cc
[549/939] Compiling bio_mem.cc
[550/939] Compiling base64.cc
[551/939] Compiling bio.cc
[552/939] Compiling tasn_utl.cc
[553/939] Compiling tasn_typ.cc
[554/939] Compiling tasn_fre.cc
[555/939] Compiling tasn_new.cc
[556/939] Compiling tasn_enc.cc
[557/939] Compiling asn1_par.cc
[558/939] Compiling tasn_dec.cc
[559/939] Compiling f_string.cc
[560/939] Compiling posix_time.cc
[561/939] Compiling f_int.cc
[562/939] Compiling asn_pack.cc
[563/939] Compiling asn1_lib.cc
[564/939] Compiling a_octet.cc
[565/939] Compiling a_type.cc
[566/939] Compiling a_utctm.cc
[567/939] Compiling a_strnid.cc
[568/939] Compiling a_time.cc
[569/939] Compiling a_strex.cc
[570/939] Compiling a_object.cc
[571/939] Compiling a_int.cc
[572/939] Compiling a_i2d_fp.cc
[573/939] Compiling a_mbstr.cc
[574/939] Compiling a_d2i_fp.cc
[575/939] Compiling a_dup.cc
[576/939] Compiling fiat_p256_adx_sqr.S
[577/939] Compiling fiat_curve25519_adx_square.S
[578/939] Compiling fiat_p256_adx_mul.S
[579/939] Compiling fiat_curve25519_adx_mul.S
[580/939] Compiling md5-x86_64-linux.S
[581/939] Compiling md5-x86_64-apple.S
[582/939] Compiling md5-586-linux.S
[583/939] Compiling a_gentm.cc
[584/939] Compiling md5-586-apple.S
[585/939] Compiling a_bitstr.cc
[586/939] Compiling chacha20_poly1305_x86_64-linux.S
[587/939] Compiling chacha20_poly1305_x86_64-apple.S
[588/939] Compiling chacha20_poly1305_armv8-win.S
[589/939] Compiling chacha-x86_64-linux.S
[590/939] Compiling chacha20_poly1305_armv8-apple.S
[591/939] Compiling chacha20_poly1305_armv8-linux.S
[592/939] Compiling CCryptoBoringSSLShims shims.c
[593/939] Compiling chacha-x86_64-apple.S
[594/939] Compiling chacha-x86-linux.S
[595/939] Compiling chacha-armv8-linux.S
[596/939] Compiling chacha-x86-apple.S
[597/939] Compiling chacha-armv8-win.S
[598/939] Compiling err_data.cc
[599/939] Compiling chacha-armv4-linux.S
[600/939] Compiling chacha-armv8-apple.S
[601/939] Compiling aes128gcmsiv-x86_64-linux.S
[602/939] Compiling aes128gcmsiv-x86_64-apple.S
[603/939] Compiling x86_64-mont5-linux.S
[604/939] Compiling x86_64-mont5-apple.S
[605/939] Compiling x86_64-mont-linux.S
[606/939] Compiling a_bool.cc
[607/939] Compiling x86-mont-apple.S
[608/939] Compiling vpaes-x86_64-linux.S
[609/939] Compiling x86-mont-linux.S
[610/939] Compiling x86_64-mont-apple.S
[611/939] Compiling vpaes-x86-linux.S
[612/939] Compiling vpaes-x86-apple.S
[613/939] Compiling vpaes-x86_64-apple.S
[614/939] Compiling vpaes-armv8-apple.S
[615/939] Compiling vpaes-armv8-win.S
[616/939] Compiling vpaes-armv8-linux.S
[617/939] Compiling vpaes-armv7-linux.S
[618/939] Compiling sha512-x86_64-linux.S
[619/939] Compiling sha512-x86_64-apple.S
[620/939] Compiling sha512-armv8-apple.S
[621/939] Compiling sha512-armv8-win.S
[622/939] Compiling sha512-armv4-linux.S
[623/939] Compiling sha512-armv8-linux.S
[624/939] Compiling sha512-586-linux.S
[625/939] Compiling sha256-x86_64-linux.S
[626/939] Compiling sha512-586-apple.S
[627/939] Compiling sha256-x86_64-apple.S
[628/939] Compiling sha256-armv4-linux.S
[629/939] Compiling sha256-armv8-win.S
[630/939] Compiling sha1-x86_64-linux.S
[631/939] Compiling sha256-armv8-linux.S
[631/939] Compiling sha256-armv8-apple.S
[633/939] Compiling sha256-586-linux.S
[634/939] Compiling sha256-586-apple.S
[635/939] Compiling sha1-armv8-win.S
[636/939] Compiling sha1-586-linux.S
[637/939] Compiling sha1-armv4-large-linux.S
[638/939] Compiling sha1-x86_64-apple.S
[639/939] Compiling sha1-armv8-linux.S
[640/939] Compiling sha1-armv8-apple.S
[641/939] Compiling rsaz-avx2-linux.S
[642/939] Compiling rsaz-avx2-apple.S
[643/939] Compiling sha1-586-apple.S
[644/939] Compiling rdrand-x86_64-linux.S
[645/939] Compiling p256_beeu-x86_64-asm-linux.S
[646/939] Compiling p256_beeu-x86_64-asm-apple.S
[647/939] Compiling rdrand-x86_64-apple.S
[648/939] Compiling p256_beeu-armv8-asm-win.S
[649/939] Compiling p256-x86_64-asm-linux.S
[650/939] Compiling p256-x86_64-asm-apple.S
[651/939] Compiling p256_beeu-armv8-asm-apple.S
[652/939] Compiling p256-armv8-asm-win.S
[653/939] Compiling p256_beeu-armv8-asm-linux.S
[654/939] Compiling p256-armv8-asm-apple.S
[655/939] Compiling ghashv8-armv8-win.S
[656/939] Compiling p256-armv8-asm-linux.S
[657/939] Compiling ghashv8-armv8-linux.S
[658/939] Compiling ghashv8-armv8-apple.S
[659/939] Compiling ghash-x86_64-linux.S
[660/939] Compiling ghashv8-armv7-linux.S
[661/939] Compiling ghash-x86-linux.S
[662/939] Compiling ghash-x86-apple.S
[663/939] Compiling ghash-x86_64-apple.S
[664/939] Compiling ghash-ssse3-x86_64-linux.S
[665/939] Compiling ghash-ssse3-x86_64-apple.S
[666/939] Compiling ghash-ssse3-x86-linux.S
[667/939] Compiling ghash-ssse3-x86-apple.S
[668/939] Compiling ghash-neon-armv8-win.S
[669/939] Compiling ghash-neon-armv8-linux.S
[670/939] Compiling ghash-neon-armv8-apple.S
[671/939] Compiling ghash-armv4-linux.S
[672/939] Compiling co-586-linux.S
[673/939] Compiling co-586-apple.S
[674/939] Compiling bsaes-armv7-linux.S
[675/939] Compiling bn-armv8-win.S
[676/939] Compiling bn-armv8-apple.S
[677/939] Compiling bn-armv8-linux.S
[678/939] Compiling bn-586-linux.S
[679/939] Compiling armv8-mont-apple.S
[680/939] Compiling armv8-mont-win.S
[681/939] Compiling armv4-mont-linux.S
[682/939] Compiling bn-586-apple.S
[683/939] Compiling armv8-mont-linux.S
[684/939] Compiling aesv8-gcm-armv8-win.S
[684/939] Compiling aesv8-gcm-armv8-apple.S
[686/939] Compiling aesv8-armv8-win.S
[687/939] Compiling aesv8-gcm-armv8-linux.S
[688/939] Compiling aesv8-armv8-linux.S
[689/939] Compiling aesv8-armv7-linux.S
[690/939] Compiling aesni-x86_64-apple.S
[691/939] Compiling aesv8-armv8-apple.S
[692/939] Compiling aesni-x86_64-linux.S
[693/939] Compiling aesni-x86-linux.S
[694/939] Compiling aesni-x86-apple.S
[695/939] Compiling aesni-gcm-x86_64-linux.S
[696/939] Compiling aes-gcm-avx10-x86_64-apple.S
[697/939] Compiling aesni-gcm-x86_64-apple.S
[698/939] Compiling aes-gcm-avx10-x86_64-linux.S
[699/939] Compiling x_sig.cc
[700/939] Compiling x_x509a.cc
[701/939] Compiling x_val.cc
[702/939] Compiling x_req.cc
[703/939] Compiling x_spki.cc
[704/939] Compiling x_x509.cc
[705/939] Compiling c-nioatomics.c
[706/939] Compiling x_pubkey.cc
[707/939] Compiling x_name.cc
[708/939] Compiling x_exten.cc
[709/939] Compiling x_crl.cc
[710/939] Compiling x_attrib.cc
[711/939] Compiling x_all.cc
[712/939] Compiling x_algor.cc
[713/939] Compiling c-atomics.c
[714/939] Compiling x509spki.cc
[715/945] Compiling x509rset.cc
[716/945] Compiling x509cset.cc
[717/945] Compiling x509name.cc
[719/945] Compiling NIOConcurrencyHelpers NIOLock.swift
[719/945] Compiling x509_vfy.cc
[720/945] Compiling x509_vpm.cc
[722/945] Compiling NIOConcurrencyHelpers lock.swift
[723/945] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[724/945] Compiling NIOConcurrencyHelpers atomics.swift
[724/945] Compiling x509_txt.cc
[725/945] Compiling x509_v3.cc
[727/945] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[728/945] Emitting module NIOConcurrencyHelpers
[729/946] Compiling x509_trs.cc
[730/946] Compiling x509_set.cc
[731/946] Compiling x509_req.cc
[732/946] Compiling x509_obj.cc
[733/946] Compiling x509_lu.cc
[734/946] Compiling x509_def.cc
[735/946] Compiling x509_ext.cc
[736/946] Compiling x509_d2.cc
[737/946] Compiling x509_cmp.cc
[738/946] Compiling v3_purp.cc
[739/946] Compiling x509.cc
[740/946] Compiling v3_utl.cc
[741/946] Compiling x509_att.cc
[742/946] Compiling v3_skey.cc
[743/946] Compiling v3_info.cc
[744/946] Compiling v3_prn.cc
[745/946] Compiling v3_pmaps.cc
[746/946] Compiling v3_lib.cc
[747/946] Compiling v3_pcons.cc
[748/946] Compiling v3_ocsp.cc
[749/946] Compiling v3_ia5.cc
[750/946] Compiling v3_ncons.cc
[751/946] Compiling v3_int.cc
[752/946] Compiling v3_genn.cc
[753/946] Compiling v3_bcons.cc
[754/946] Compiling v3_alt.cc
[755/946] Compiling t_crl.cc
[756/946] Compiling v3_akey.cc
[757/946] Compiling rsa_pss.cc
[758/946] Compiling v3_akeya.cc
[759/946] Compiling t_req.cc
[760/946] Compiling t_x509a.cc
[761/946] Compiling t_x509.cc
[762/946] Compiling by_file.cc
[763/946] Compiling policy.cc
[764/946] Compiling i2d_pr.cc
[765/946] Compiling name_print.cc
[766/946] Compiling a_digest.cc
[767/946] Compiling a_sign.cc
[768/946] Compiling by_dir.cc
[769/946] Compiling a_verify.cc
[770/946] Compiling algorithm.cc
[771/946] Compiling thread_win.cc
[772/946] Compiling asn1_gen.cc
[773/946] Compiling voprf.cc
[774/946] Compiling wots.cc
[775/946] Compiling trust_token.cc
[776/946] Compiling thread_pthread.cc
[777/946] Compiling pmbtoken.cc
[778/946] Compiling thread.cc
[779/946] Compiling slhdsa.cc
[780/946] Compiling thread_none.cc
[781/946] Compiling stack.cc
[782/946] Compiling thash.cc
[783/946] Compiling merkle.cc
[784/946] Compiling siphash.cc
[785/946] Compiling sha512.cc
[786/946] Compiling rsa_extra.cc
[787/946] Compiling sha256.cc
[788/946] Compiling fors.cc
[789/946] Compiling sha1.cc
[790/946] Compiling rsa_print.cc
[791/946] Compiling rc4.cc
[792/946] Compiling urandom.cc
[793/946] Compiling trusty.cc
[794/946] Compiling refcount.cc
[795/946] Compiling rsa_crypt.cc
[796/946] Compiling windows.cc
[797/946] Compiling rsa_asn1.cc
[798/946] Compiling rand_extra.cc
[799/946] Compiling ios.cc
[800/946] Compiling forkunsafe.cc
[801/946] Compiling fork_detect.cc
[802/946] Compiling passive.cc
[803/946] Compiling deterministic.cc
[804/946] Compiling getentropy.cc
[805/946] Compiling poly1305_arm_asm.S
[806/946] Compiling poly1305_arm.cc
[807/946] Compiling poly1305.cc
[808/946] Compiling pool.cc
[809/946] Compiling poly1305_vec.cc
[810/946] Compiling pkcs8_x509.cc
[811/946] Compiling pkcs8.cc
[812/946] Compiling p5_pbev2.cc
[813/946] Compiling pkcs7.cc
[814/946] Compiling pem_xaux.cc
[815/946] Compiling pem_pkey.cc
[816/946] Compiling pem_x509.cc
[817/946] Compiling pkcs7_x509.cc
[818/946] Compiling pem_pk8.cc
[819/946] Compiling pem_oth.cc
[820/946] Compiling pem_info.cc
[821/946] Compiling pem_lib.cc
[822/946] Compiling obj_xref.cc
[823/946] Compiling mldsa.cc
[824/946] Compiling pem_all.cc
[825/946] Compiling obj.cc
[826/946] Compiling mem.cc
[827/946] Compiling mlkem.cc
[828/946] Compiling poly_rq_mul.S
[829/946] Compiling fips_shared_support.cc
[830/946] Compiling md5.cc
[831/946] Compiling md4.cc
[832/946] Compiling kyber.cc
[833/946] Compiling lhash.cc
[834/946] Compiling sign.cc
[835/946] Compiling ex_data.cc
[836/946] Compiling hpke.cc
[837/946] Compiling p_x25519.cc
[838/946] Compiling hrss.cc
[839/946] Compiling scrypt.cc
[840/946] Compiling print.cc
[841/946] Compiling p_x25519_asn1.cc
[842/946] Compiling pbkdf.cc
[843/946] Compiling p_rsa_asn1.cc
[844/946] Compiling p_ec_asn1.cc
[845/946] Compiling p_hkdf.cc
[846/946] Compiling p_rsa.cc
[847/946] Compiling p_ec.cc
[848/946] Compiling p_ed25519_asn1.cc
[849/946] Compiling p_ed25519.cc
[850/946] Compiling evp_ctx.cc
[851/946] Compiling p_dh_asn1.cc
[852/946] Compiling p_dsa_asn1.cc
[853/946] Compiling p_dh.cc
[854/946] Compiling err.cc
[855/946] Compiling evp.cc
[856/946] Compiling evp_asn1.cc
[857/946] Compiling engine.cc
[858/946] Compiling ec_derive.cc
[859/946] Compiling ecdsa_asn1.cc
[860/946] Compiling ecdh_extra.cc
[861/946] Compiling hash_to_curve.cc
[862/946] Compiling ec_asn1.cc
[863/946] Compiling dsa_asn1.cc
[864/946] Compiling digest_extra.cc
[865/946] Compiling dsa.cc
[866/946] Compiling x25519-asm-arm.S
[867/946] Compiling dh_asn1.cc
[868/946] Compiling params.cc
[869/946] Compiling bcm.cc
[870/946] Compiling des.cc
[871/946] Compiling spake25519.cc
[872/946] Compiling cpu_intel.cc
[873/946] Compiling cpu_arm_linux.cc
[874/946] Compiling crypto.cc
[875/946] Compiling curve25519_64_adx.cc
[876/946] Compiling cpu_aarch64_win.cc
[877/946] Compiling cpu_arm_freebsd.cc
[878/946] Compiling curve25519.cc
[879/946] Compiling cpu_aarch64_apple.cc
[880/946] Compiling cpu_aarch64_sysreg.cc
[881/946] Compiling cpu_aarch64_openbsd.cc
[882/946] Compiling cpu_aarch64_fuchsia.cc
[883/946] Compiling cpu_aarch64_linux.cc
[884/946] Compiling conf.cc
[885/946] Compiling tls_cbc.cc
[886/946] Compiling e_tls.cc
[887/946] Compiling e_null.cc
[888/946] Compiling e_rc4.cc
[889/946] Compiling e_rc2.cc
[890/946] Compiling derive_key.cc
[891/946] Compiling e_aesctrhmac.cc
[892/946] Compiling chacha.cc
[893/946] Compiling e_chacha20poly1305.cc
[894/946] Compiling e_des.cc
[895/946] Compiling e_aesgcmsiv.cc
[896/946] Compiling cipher_extra.cc
[897/946] Compiling unicode.cc
[898/946] Compiling cbs.cc
[899/946] Compiling cbb.cc
[900/946] Compiling asn1_compat.cc
[901/946] Compiling ber.cc
[902/946] Compiling buf.cc
[903/946] Compiling printf.cc
[903/946] Compiling bn_asn1.cc
[905/946] Compiling convert.cc
[906/946] Compiling pair.cc
[907/946] Compiling blake2.cc
[908/946] Compiling file.cc
[909/946] Compiling hexdump.cc
[910/946] Compiling bio_mem.cc
[911/946] Compiling tasn_typ.cc
[912/946] Compiling fd.cc
[913/946] Compiling errno.cc
[914/946] Compiling base64.cc
[915/946] Compiling bio.cc
[916/946] Compiling tasn_utl.cc
[917/946] Compiling tasn_new.cc
[918/946] Compiling f_string.cc
[919/946] Compiling tasn_fre.cc
[920/946] Compiling tasn_enc.cc
[921/946] Compiling posix_time.cc
[922/946] Compiling tasn_dec.cc
[923/946] Compiling f_int.cc
[924/946] Compiling asn_pack.cc
[925/946] Compiling asn1_par.cc
[926/946] Compiling asn1_lib.cc
[927/946] Compiling a_octet.cc
[928/946] Compiling a_type.cc
[929/946] Compiling a_utctm.cc
[930/946] Compiling a_object.cc
[931/946] Compiling a_time.cc
[932/946] Compiling a_strnid.cc
[933/946] Compiling a_strex.cc
[934/946] Compiling a_i2d_fp.cc
[935/946] Compiling CAsyncHTTPClient CAsyncHTTPClient.c
[936/946] Write sources
[937/946] Compiling a_dup.cc
[937/946] Write sources
[940/946] Compiling a_mbstr.cc
[941/946] Compiling a_d2i_fp.cc
[942/965] Compiling a_int.cc
[943/965] Compiling a_gentm.cc
[944/965] Compiling a_bitstr.cc
[945/1035] Compiling a_bool.cc
[947/1035] Compiling AsyncAlgorithms AsyncTimerSequence.swift
[948/1035] Compiling Algorithms Chunked.swift
[949/1035] Compiling Algorithms Rotate.swift
[950/1035] Compiling Algorithms Split.swift
[951/1037] Compiling AsyncAlgorithms AsyncThrowingExclusiveReductionsSequence.swift
[952/1037] Compiling AsyncAlgorithms AsyncThrowingInclusiveReductionsSequence.swift
[953/1045] Compiling Atomics IntegerOperations.swift
[954/1045] Compiling Atomics Unmanaged extensions.swift
[955/1045] Compiling AsyncAlgorithms ChannelStateMachine.swift
[956/1045] Compiling Algorithms RandomSample.swift
[957/1045] Compiling Algorithms Reductions.swift
[958/1045] Compiling Algorithms Product.swift
[959/1045] Compiling AsyncAlgorithms AsyncSyncSequence.swift
[960/1045] Compiling AsyncAlgorithms AsyncThrottleSequence.swift
[961/1045] Emitting module AsyncAlgorithms
[962/1051] Compiling AsyncAlgorithms AsyncMerge2Sequence.swift
[963/1051] Compiling AsyncAlgorithms AsyncMerge3Sequence.swift
[964/1051] Compiling AsyncAlgorithms MergeStateMachine.swift
[965/1051] Compiling AsyncAlgorithms MergeStorage.swift
[966/1051] Compiling AsyncAlgorithms RangeReplaceableCollection.swift
[967/1051] Compiling AsyncAlgorithms Rethrow.swift
[974/1054] Compiling Algorithms Compacted.swift
[975/1054] Compiling Algorithms Cycle.swift
[976/1054] Compiling Algorithms EitherSequence.swift
[977/1054] Compiling Algorithms FirstNonNil.swift
[978/1054] Compiling Algorithms FlattenCollection.swift
[979/1054] Compiling Algorithms Grouped.swift
[980/1054] Compiling Algorithms Indexed.swift
[981/1054] Compiling Algorithms Intersperse.swift
[985/1054] Compiling Algorithms Partition.swift
[986/1054] Compiling Algorithms Permutations.swift
[988/1054] Compiling Algorithms Trim.swift
[989/1054] Compiling Algorithms Unique.swift
[990/1054] Compiling Algorithms Windows.swift
[1005/1054] Compiling AsyncAlgorithms DebounceStateMachine.swift
[1006/1054] Compiling AsyncAlgorithms DebounceStorage.swift
[1007/1054] Compiling AsyncAlgorithms Dictionary.swift
[1008/1054] Compiling AsyncAlgorithms AsyncInterspersedSequence.swift
[1009/1054] Compiling AsyncAlgorithms Locking.swift
[1010/1054] Compiling AsyncAlgorithms BoundedBufferStateMachine.swift
[1011/1054] Compiling AsyncAlgorithms BoundedBufferStorage.swift
[1012/1054] Compiling AsyncAlgorithms UnboundedBufferStateMachine.swift
[1013/1054] Compiling AsyncAlgorithms UnboundedBufferStorage.swift
[1014/1054] Compiling AsyncAlgorithms AsyncChannel.swift
[1015/1054] Compiling AsyncAlgorithms AsyncThrowingChannel.swift
[1033/1054] Compiling AsyncAlgorithms SetAlgebra.swift
[1034/1054] Compiling AsyncAlgorithms UnsafeTransfer.swift
[1035/1054] Compiling AsyncAlgorithms AsyncZip2Sequence.swift
[1036/1054] Compiling AsyncAlgorithms AsyncZip3Sequence.swift
[1037/1054] Compiling AsyncAlgorithms ZipStateMachine.swift
[1038/1054] Compiling AsyncAlgorithms ZipStorage.swift
[1045/1054] Emitting module Atomics
[1046/1056] Compiling CryptoBoringWrapper RandomBytes.swift
[1049/1056] Emitting module Algorithms
[1051/1125] Emitting module CryptoBoringWrapper
[1052/1125] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[1053/1125] Compiling ServiceLifecycle ServiceGroupConfiguration.swift
[1054/1126] Compiling ServiceLifecycle CancellationWaiter.swift
[1055/1126] Compiling ServiceLifecycle GracefulShutdown.swift
[1056/1126] Compiling ServiceLifecycle AsyncGracefulShutdownSequence.swift
[1057/1126] Compiling ServiceLifecycle AsyncCancelOnGracefulShutdownSequence.swift
[1058/1126] Emitting module ServiceLifecycle
[1059/1126] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[1060/1126] Compiling ServiceLifecycle ServiceRunnerError.swift
[1061/1126] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[1062/1126] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[1063/1126] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[1064/1126] Compiling CryptoBoringWrapper EllipticCurve.swift
[1066/1198] Compiling Crypto AESWrap.swift
[1067/1198] Compiling Crypto AESWrap_boring.swift
[1068/1198] Compiling Crypto Ed25519_boring.swift
[1069/1198] Compiling Crypto NISTCurvesKeys_boring.swift
[1070/1198] Compiling Crypto X25519Keys_boring.swift
[1071/1198] Compiling Crypto Curve25519.swift
[1072/1198] Compiling Crypto Ed25519Keys.swift
[1073/1198] Compiling Crypto NISTCurvesKeys.swift
[1074/1198] Compiling ServiceLifecycle Service.swift
[1075/1198] Compiling ServiceLifecycle ServiceGroup.swift
[1077/1207] Compiling Crypto MessageAuthenticationCode.swift
[1078/1207] Compiling Crypto AES.swift
[1079/1207] Compiling Crypto ECDSASignature_boring.swift
[1080/1207] Compiling Crypto ECDSA_boring.swift
[1081/1207] Compiling Crypto EdDSA_boring.swift
[1082/1207] Compiling Crypto ECDSA.swift
[1083/1207] Compiling Crypto Ed25519.swift
[1084/1207] Compiling Crypto HKDF.swift
[1085/1207] Compiling Crypto ObjectIdentifier.swift
[1086/1207] Compiling Crypto ECDSASignature.swift
[1087/1207] Compiling Crypto PEMDocument.swift
[1088/1207] Compiling Crypto HPKE-Ciphersuite.swift
[1089/1207] Compiling Crypto HPKE-KDF.swift
[1090/1207] Compiling Crypto HPKE-KexKeyDerivation.swift
[1091/1207] Compiling Crypto HPKE-LabeledExtract.swift
[1092/1207] Compiling Crypto HPKE-Utils.swift
[1093/1207] Emitting module Crypto
[1094/1216] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[1095/1216] Compiling NIOCore SocketAddresses.swift
[1096/1216] Compiling NIOCore SocketOptionProvider.swift
[1097/1216] Compiling NIOCore SystemCallHelpers.swift
[1098/1216] Compiling NIOCore TimeAmount+Duration.swift
[1099/1216] Compiling NIOCore TypeAssistedChannelHandler.swift
[1100/1216] Compiling NIOCore UniversalBootstrapSupport.swift
[1101/1216] Compiling NIOCore Utilities.swift
[1102/1216] Compiling Crypto SymmetricKeys.swift
[1103/1216] Compiling Crypto HMAC.swift
[1104/1216] Compiling Crypto MACFunctions.swift
[1127/1216] Compiling Crypto DHKEM.swift
[1128/1216] Compiling Crypto HPKE-KEM-Curve25519.swift
[1129/1216] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[1130/1216] Compiling Crypto HPKE-KEM.swift
[1131/1216] Compiling Crypto HPKE-Errors.swift
[1132/1216] Compiling Crypto PKCS8PrivateKey.swift
[1133/1216] Compiling Crypto SEC1PrivateKey.swift
[1134/1216] Compiling Crypto SubjectPublicKeyInfo.swift
[1135/1216] Compiling Crypto CryptoKitErrors.swift
[1136/1216] Compiling Crypto Digest_boring.swift
[1137/1216] Compiling Crypto Digest.swift
[1138/1216] Compiling Crypto Digests.swift
[1139/1216] Compiling Crypto HashFunctions.swift
[1140/1216] Compiling Crypto HashFunctions_SHA2.swift
[1141/1216] Compiling Crypto HPKE-AEAD.swift
[1149/1216] Compiling Crypto ECDH_boring.swift
[1150/1216] Compiling Crypto DH.swift
[1151/1216] Compiling Crypto ECDH.swift
[1160/1216] Compiling Crypto AES-GCM.swift
[1161/1216] Compiling Crypto AES-GCM_boring.swift
[1162/1216] Compiling Crypto ChaChaPoly_boring.swift
[1163/1216] Compiling Crypto ChaChaPoly.swift
[1164/1216] Compiling Crypto Cipher.swift
[1165/1216] Compiling Crypto Nonces.swift
[1166/1216] Compiling Crypto ASN1.swift
[1167/1216] Compiling Crypto ASN1Any.swift
[1168/1216] Compiling Crypto ASN1BitString.swift
[1169/1216] Compiling Crypto ASN1Boolean.swift
[1170/1216] Compiling Crypto ASN1Identifier.swift
[1171/1216] Compiling Crypto ASN1Integer.swift
[1172/1216] Compiling Crypto ASN1Null.swift
[1173/1216] Compiling Crypto ASN1OctetString.swift
[1174/1216] Compiling Crypto ASN1Strings.swift
[1175/1216] Compiling Crypto ArraySliceBigint.swift
[1176/1216] Compiling Crypto GeneralizedTime.swift
[1189/1216] Compiling Crypto Signature.swift
[1190/1216] Compiling Crypto CryptoKitErrors_boring.swift
[1191/1216] Compiling Crypto RNG_boring.swift
[1192/1216] Compiling Crypto SafeCompare_boring.swift
[1193/1216] Compiling Crypto Zeroization_boring.swift
[1194/1216] Compiling Crypto PrettyBytes.swift
[1195/1216] Compiling Crypto SafeCompare.swift
[1196/1216] Compiling Crypto SecureBytes.swift
[1197/1216] Compiling Crypto Zeroization.swift
[1199/1217] Emitting module NIOCore
[1219/1268] Compiling NIOEmbedded Embedded.swift
[1220/1268] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[1221/1268] Emitting module NIOEmbedded
[1222/1268] Compiling NIOEmbedded AsyncTestingChannel.swift
[1224/1269] Compiling NIOPosix Pool.swift
[1225/1269] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[1226/1269] Compiling NIOPosix PosixSingletons.swift
[1227/1269] Compiling NIOPosix RawSocketBootstrap.swift
[1228/1269] Compiling NIOPosix Resolver.swift
[1229/1269] Compiling NIOPosix Selectable.swift
[1230/1275] Compiling NIOPosix ThreadPosix.swift
[1231/1275] Compiling NIOPosix ThreadWindows.swift
[1232/1275] Compiling NIOPosix UnsafeTransfer.swift
[1233/1275] Compiling NIOPosix Utilities.swift
[1234/1275] Compiling NIOPosix VsockAddress.swift
[1235/1275] Compiling NIOPosix VsockChannelEvents.swift
[1236/1275] Emitting module NIOPosix
[1237/1275] Compiling NIOPosix SelectableChannel.swift
[1238/1275] Compiling NIOPosix SelectableEventLoop.swift
[1239/1275] Compiling NIOPosix SelectorEpoll.swift
[1240/1275] Compiling NIOPosix SelectorGeneric.swift
[1241/1275] Compiling NIOPosix SelectorKqueue.swift
[1242/1275] Compiling NIOPosix SelectorUring.swift
[1243/1275] Compiling NIOPosix ServerSocket.swift
[1244/1275] Compiling NIOPosix Socket.swift
[1245/1275] Compiling NIOPosix SocketChannel.swift
[1246/1275] Compiling NIOPosix SocketProtocols.swift
[1247/1275] Compiling NIOPosix System.swift
[1248/1275] Compiling NIOPosix Thread.swift
[1249/1275] Compiling NIOPosix BSDSocketAPICommon.swift
[1250/1275] Compiling NIOPosix BSDSocketAPIPosix.swift
[1251/1275] Compiling NIOPosix BSDSocketAPIWindows.swift
[1252/1275] Compiling NIOPosix BaseSocket.swift
[1253/1275] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[1254/1275] Compiling NIOPosix BaseSocketChannel.swift
[1255/1275] Compiling NIOPosix BaseStreamSocketChannel.swift
[1256/1275] Compiling NIOPosix Bootstrap.swift
[1257/1275] Compiling NIOPosix ControlMessage.swift
[1258/1275] Compiling NIOPosix DatagramVectorReadManager.swift
[1259/1275] Compiling NIOPosix Errors+Any.swift
[1260/1275] Compiling NIOPosix FileDescriptor.swift
[1261/1275] Compiling NIOPosix GetaddrinfoResolver.swift
[1262/1275] Compiling NIOPosix HappyEyeballs.swift
[1263/1275] Compiling NIOPosix IO.swift
[1264/1275] Compiling NIOPosix IntegerBitPacking.swift
[1265/1275] Compiling NIOPosix IntegerTypes.swift
[1266/1275] Compiling NIOPosix Linux.swift
[1267/1275] Compiling NIOPosix LinuxCPUSet.swift
[1268/1275] Compiling NIOPosix LinuxUring.swift
[1269/1275] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[1270/1275] Compiling NIOPosix NIOThreadPool.swift
[1271/1275] Compiling NIOPosix NonBlockingFileIO.swift
[1272/1275] Compiling NIOPosix PendingDatagramWritesManager.swift
[1273/1275] Compiling NIOPosix PendingWritesManager.swift
[1274/1275] Compiling NIOPosix PipeChannel.swift
[1275/1275] Compiling NIOPosix PipePair.swift
[1277/1278] Compiling NIO Exports.swift
[1278/1278] Emitting module NIO
[1280/1318] Emitting module NIOTLS
[1281/1318] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[1282/1318] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[1283/1319] Compiling NIOTLS TLSEvents.swift
[1284/1319] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[1285/1319] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[1286/1319] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[1287/1319] Compiling NIOSOCKS SOCKSResponse.swift
[1288/1319] Emitting module NIOSOCKS
[1289/1319] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[1290/1319] Compiling NIOSOCKS ClientStateMachine.swift
[1291/1319] Compiling NIOSOCKS ServerStateMachine.swift
[1292/1319] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[1293/1319] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[1294/1319] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[1295/1319] Compiling NIOTLS SNIHandler.swift
[1297/1320] Compiling NIOHTTP1 ByteCollectionUtils.swift
[1298/1320] Compiling NIOHTTP1 HTTPDecoder.swift
[1299/1320] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[1300/1320] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[1301/1320] Compiling NIOHTTP1 HTTPEncoder.swift
[1302/1320] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[1303/1321] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[1304/1321] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[1306/1323] Emitting module NIOFoundationCompat
[1307/1323] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[1310/1325] Emitting module NIOHTTP1
[1312/1353] Compiling NIOSSL SSLPublicKey.swift
[1313/1353] Compiling NIOSSL SecurityFrameworkCertificateVerification.swift
[1314/1375] Compiling NIOTransportServices NIOTSChannelOptions.swift
[1315/1375] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[1316/1375] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[1317/1375] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[1318/1375] Compiling NIOTransportServices NIOTSBootstraps.swift
[1321/1377] Emitting module NIOTransportServices
[1322/1377] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[1323/1377] Compiling NIOTransportServices NIOTSSingletons.swift
[1326/1377] Compiling NIOTransportServices NIOTSErrors.swift
[1327/1377] Compiling NIOTransportServices NIOTSEventLoop.swift
[1328/1377] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1329/1377] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[1330/1377] Compiling NIOTransportServices NIOTSListenerChannel.swift
[1331/1377] Compiling NIOTransportServices StateManagedChannel.swift
[1332/1377] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1333/1377] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1334/1377] Compiling NIOTransportServices AcceptHandler.swift
[1335/1377] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[1336/1377] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[1337/1377] Compiling NIOTransportServices NIOTSDatagramListener.swift
[1338/1377] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[1339/1377] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[1340/1377] Compiling NIOTransportServices TCPOptions+SocketChannelOption.swift
[1341/1377] Compiling NIOTransportServices UDPOptions+SocketChannelOption.swift
[1351/1397] Emitting module NIOSSL
[1352/1401] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[1353/1401] Compiling NIOHPACK IntegerCoding.swift
[1354/1401] Compiling NIOHPACK IndexedHeaderTable.swift
[1355/1401] Compiling NIOHPACK HuffmanTables.swift
[1356/1402] Compiling NIOHPACK DynamicHeaderTable.swift
[1357/1402] Compiling NIOHPACK HPACKDecoder.swift
[1358/1402] Compiling NIOHTTPCompression HTTPDecompression.swift
[1359/1402] Compiling NIOHTTPCompression HTTPCompression.swift
[1360/1402] Emitting module NIOHPACK
[1361/1402] Emitting module NIOHTTPCompression
[1362/1402] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[1363/1402] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[1364/1402] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[1365/1402] Compiling NIOHPACK HPACKEncoder.swift
[1366/1402] Compiling NIOHPACK HPACKErrors.swift
[1367/1402] Compiling NIOHPACK StaticHeaderTable.swift
[1369/1403] Compiling NIOSSL SubjectAlternativeName.swift
[1370/1403] Compiling NIOSSL NIOSSLSecureBytes.swift
[1371/1403] Compiling NIOSSL RNG.swift
[1372/1403] Compiling NIOSSL SafeCompare.swift
[1377/1403] Compiling NIOHPACK HuffmanCoding.swift
[1378/1403] Compiling NIOHPACK HPACKHeader.swift
[1379/1403] Compiling NIOHPACK HeaderTables.swift
[1380/1404] Compiling NIOSSL Zeroization.swift
[1381/1404] Compiling NIOSSL TLSConfiguration.swift
[1382/1404] Compiling NIOSSL UniversalBootstrapSupport.swift
[1383/1404] Compiling NIOSSL UnsafeKeyAndChainTarget.swift
[1388/1404] Compiling NIOSSL NIOSSLHandler.swift
[1406/1463] Emitting module NIOHTTP2
[1407/1471] Compiling NIOHTTP2 StateMachineResult.swift
[1408/1471] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1409/1471] Compiling NIOHTTP2 DOSHeuristics.swift
[1410/1471] Compiling NIOHTTP2 Error+Any.swift
[1411/1471] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1412/1471] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1413/1471] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1414/1471] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1415/1471] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1416/1471] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1417/1471] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1418/1471] Compiling NIOHTTP2 HTTP2StreamID.swift
[1419/1471] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1420/1471] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1421/1471] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1422/1471] Compiling NIOHTTP2 InboundEventBuffer.swift
[1423/1471] Compiling NIOHTTP2 InboundWindowManager.swift
[1424/1471] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1425/1471] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1426/1471] Compiling NIOHTTP2 StreamChannelList.swift
[1427/1471] Compiling NIOHTTP2 StreamMap.swift
[1428/1471] Compiling NIOHTTP2 StreamStateMachine.swift
[1429/1471] Compiling NIOHTTP2 UnsafeTransfer.swift
[1430/1471] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1431/1471] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[1432/1471] Compiling NIOHTTP2 HTTP2Frame.swift
[1433/1471] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[1434/1471] Compiling NIOHTTP2 HTTP2FrameParser.swift
[1435/1471] Compiling NIOHTTP2 HTTP2PingData.swift
[1436/1471] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[1437/1471] Compiling NIOHTTP2 HTTP2Settings.swift
[1438/1471] Compiling NIOHTTP2 HTTP2Stream.swift
[1439/1471] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1440/1471] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1441/1471] Compiling NIOHTTP2 HasLocalSettings.swift
[1442/1471] Compiling NIOHTTP2 HasRemoteSettings.swift
[1443/1471] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1444/1471] Compiling NIOHTTP2 QuiescingState.swift
[1445/1471] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1446/1471] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1447/1471] Compiling NIOHTTP2 MaySendFrames.swift
[1448/1471] Compiling NIOHTTP2 SendingDataState.swift
[1449/1471] Compiling NIOHTTP2 SendingGoawayState.swift
[1450/1471] Compiling NIOHTTP2 SendingHeadersState.swift
[1451/1471] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1452/1471] Compiling NIOHTTP2 SendingRstStreamState.swift
[1453/1471] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1454/1471] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1455/1471] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[1456/1471] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[1457/1471] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[1458/1471] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[1459/1471] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[1460/1471] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[1461/1471] Compiling NIOHTTP2 HTTP2Error.swift
[1462/1471] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1463/1471] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1464/1471] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1465/1471] Compiling NIOHTTP2 MayReceiveFrames.swift
[1466/1471] Compiling NIOHTTP2 ReceivingDataState.swift
[1467/1471] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1468/1471] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1469/1471] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1470/1471] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1471/1471] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1473/1532] Emitting module AsyncHTTPClient
[1474/1540] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1475/1540] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1476/1540] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1477/1540] Compiling AsyncHTTPClient HTTP1Connection.swift
[1478/1540] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1479/1540] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1480/1540] Compiling AsyncHTTPClient HTTP2Connection.swift
[1481/1540] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1482/1540] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1483/1540] Compiling AsyncHTTPClient ConnectionTarget.swift
[1484/1540] Compiling AsyncHTTPClient DeconstructedURL.swift
[1485/1540] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1486/1540] Compiling AsyncHTTPClient FoundationExtensions.swift
[1487/1540] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1488/1540] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1489/1540] Compiling AsyncHTTPClient HTTPClient+StructuredConcurrency.swift
[1490/1540] Compiling AsyncHTTPClient HTTPClient.swift
[1491/1540] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1492/1540] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1493/1540] Compiling AsyncHTTPClient Transaction.swift
[1494/1540] Compiling AsyncHTTPClient Base64.swift
[1495/1540] Compiling AsyncHTTPClient BasicAuth.swift
[1496/1540] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1497/1540] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1498/1540] Compiling AsyncHTTPClient ConnectionPool.swift
[1499/1540] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1500/1540] Compiling AsyncHTTPClient HTTPHandler.swift
[1501/1540] Compiling AsyncHTTPClient LRUCache.swift
[1502/1540] Compiling AsyncHTTPClient NIOLoopBound+Execute.swift
[1503/1540] Compiling AsyncHTTPClient NWErrorHandler.swift
[1504/1540] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1505/1540] Compiling AsyncHTTPClient TLSConfiguration.swift
[1506/1540] Compiling AsyncHTTPClient RedirectState.swift
[1507/1540] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1508/1540] Compiling AsyncHTTPClient RequestBag.swift
[1509/1540] Compiling AsyncHTTPClient RequestValidation.swift
[1510/1540] Compiling AsyncHTTPClient SSLContextCache.swift
[1511/1540] Compiling AsyncHTTPClient Scheme.swift
[1512/1540] Compiling AsyncHTTPClient Singleton.swift
[1513/1540] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1514/1540] Compiling AsyncHTTPClient StructuredConcurrencyHelpers.swift
[1515/1540] Compiling AsyncHTTPClient Utils.swift
[1516/1540] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1517/1540] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1518/1540] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1519/1540] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1520/1540] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1521/1540] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1522/1540] Compiling AsyncHTTPClient RequestBodyLength.swift
[1523/1540] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1524/1540] Compiling AsyncHTTPClient RequestOptions.swift
[1525/1540] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1526/1540] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1527/1540] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1528/1540] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1529/1540] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1530/1540] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1531/1540] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1532/1540] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[1533/1540] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[1534/1540] Compiling AsyncHTTPClient AsyncLazySequence.swift
[1535/1540] Compiling AsyncHTTPClient HTTPClient+execute.swift
[1536/1540] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[1537/1540] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[1538/1540] Compiling AsyncHTTPClient HTTPClientRequest+auth.swift
[1539/1540] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1540/1540] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1542/1561] Compiling WebPush DataProtocol+Base64URLCoding.swift
[1543/1561] Compiling WebPush FixedWidthInteger+BigEndienBytes.swift
[1544/1561] Compiling WebPush HTTPClientProtocol.swift
[1545/1563] Compiling WebPush PushServiceError.swift
[1546/1563] Compiling WebPush UserAgentKeyMaterialError.swift
[1547/1563] Compiling WebPush VAPIDConfigurationError.swift
[1548/1563] Compiling WebPush Topic.swift
[1549/1563] Compiling WebPush VAPID.swift
[1550/1563] Compiling WebPush PrintLogHandler.swift
[1551/1563] Compiling WebPush StringProtocol+UTF8Bytes.swift
[1552/1563] Compiling WebPush URL+Origin.swift
[1553/1563] Compiling WebPush VAPIDConfiguration.swift
[1554/1563] Compiling WebPush VAPIDKey.swift
[1555/1563] Emitting module WebPush
[1556/1563] Compiling WebPush BadSubscriberError.swift
[1557/1563] Compiling WebPush Base64URLDecodingError.swift
[1558/1563] Compiling WebPush MessageTooLargeError.swift
[1559/1563] Compiling WebPush Notification.swift
[1560/1563] Compiling WebPush PushMessage.swift
[1561/1563] Compiling WebPush Subscriber.swift
[1562/1563] Compiling WebPush VAPIDToken.swift
[1563/1563] Compiling WebPush WebPushManager.swift
[1565/1569] Compiling WebPushTesting VAPIDConfiguration+Testing.swift
[1566/1569] Emitting module WebPushTesting
[1567/1569] Compiling WebPushTesting Subscriber+Testing.swift
[1568/1569] Compiling WebPushTesting WebPushManager+Testing.swift
[1569/1569] Compiling WebPushTesting VAPIDKey+Testing.swift
Build complete! (483.39s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "3.10.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-service-lifecycle",
"requirement" : {
"range" : [
{
"lower_bound" : "2.6.2",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/swift-service-lifecycle.git"
},
{
"identity" : "async-http-client",
"requirement" : {
"range" : [
{
"lower_bound" : "1.24.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/async-http-client.git"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.77.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
}
],
"manifest_display_name" : "swift-webpush",
"name" : "swift-webpush",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "WebPush",
"targets" : [
"WebPush"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WebPushTesting",
"targets" : [
"WebPush",
"WebPushTesting"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "WebPushTests",
"module_type" : "SwiftTarget",
"name" : "WebPushTests",
"path" : "Tests/WebPushTests",
"product_dependencies" : [
"AsyncHTTPClient",
"Crypto",
"Logging",
"NIOCore",
"ServiceLifecycle"
],
"sources" : [
"Base64URLCodingTests.swift",
"BytesTests.swift",
"ErrorTests.swift",
"Helpers/MockHTTPClient.swift",
"Helpers/VAPIDConfiguration+Testing.swift",
"MessageSizeTests.swift",
"NeverTests.swift",
"NotificationTests.swift",
"SubscriberTests.swift",
"TopicTests.swift",
"URLOriginTests.swift",
"VAPIDConfigurationTests.swift",
"VAPIDKeyTests.swift",
"VAPIDTokenTests.swift",
"WebPushManagerTests.swift"
],
"target_dependencies" : [
"WebPush",
"WebPushTesting"
],
"type" : "test"
},
{
"c99name" : "WebPushTesting",
"module_type" : "SwiftTarget",
"name" : "WebPushTesting",
"path" : "Sources/WebPushTesting",
"product_dependencies" : [
"Crypto",
"Logging"
],
"product_memberships" : [
"WebPushTesting"
],
"sources" : [
"Subscriber+Testing.swift",
"VAPIDConfiguration+Testing.swift",
"VAPIDKey+Testing.swift",
"WebPushManager+Testing.swift"
],
"target_dependencies" : [
"WebPush"
],
"type" : "library"
},
{
"c99name" : "WebPush",
"module_type" : "SwiftTarget",
"name" : "WebPush",
"path" : "Sources/WebPush",
"product_dependencies" : [
"AsyncHTTPClient",
"Crypto",
"Logging",
"ServiceLifecycle",
"NIOCore",
"NIOHTTP1"
],
"product_memberships" : [
"WebPush",
"WebPushTesting"
],
"sources" : [
"Errors/BadSubscriberError.swift",
"Errors/Base64URLDecodingError.swift",
"Errors/MessageTooLargeError.swift",
"Errors/PushServiceError.swift",
"Errors/UserAgentKeyMaterialError.swift",
"Errors/VAPIDConfigurationError.swift",
"Helpers/DataProtocol+Base64URLCoding.swift",
"Helpers/FixedWidthInteger+BigEndienBytes.swift",
"Helpers/HTTPClientProtocol.swift",
"Helpers/PrintLogHandler.swift",
"Helpers/StringProtocol+UTF8Bytes.swift",
"Helpers/URL+Origin.swift",
"Push Message/Notification.swift",
"Push Message/PushMessage.swift",
"Subscriber.swift",
"Topic.swift",
"VAPID/VAPID.swift",
"VAPID/VAPIDConfiguration.swift",
"VAPID/VAPIDKey.swift",
"VAPID/VAPIDToken.swift",
"WebPushManager.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.