The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build vapor-oauth, reference 1.0.0-beta.2 (b4cc07), with Swift 6.1 for Wasm on 29 May 2025 12:11:05 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brokenhandsio/vapor-oauth.git
Reference: 1.0.0-beta.2
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/brokenhandsio/vapor-oauth
 * tag               1.0.0-beta.2 -> FETCH_HEAD
HEAD is now at b4cc076 Merge pull request #9 from Brett-Best/feature/user-manager-async
Cloned https://github.com/brokenhandsio/vapor-oauth.git
Revision (git rev-parse @):
b4cc076fb78a77815e9f8c17fb8a8acfb44afd1b
SUCCESS checkout https://github.com/brokenhandsio/vapor-oauth.git at 1.0.0-beta.2
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/brokenhandsio/vapor-oauth.git
https://github.com/brokenhandsio/vapor-oauth.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "vapor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/vapor.git"
    }
  ],
  "manifest_display_name" : "vapor-oauth",
  "name" : "vapor-oauth",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "OAuth",
      "targets" : [
        "VaporOAuth"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "VaporOAuthTests",
      "module_type" : "SwiftTarget",
      "name" : "VaporOAuthTests",
      "path" : "Tests/VaporOAuthTests",
      "product_dependencies" : [
        "XCTVapor"
      ],
      "sources" : [
        "Application+testable.swift",
        "AuthorizationTests/AuthorizationRequestTests.swift",
        "AuthorizationTests/AuthorizationResponseTests.swift",
        "DefaultImplementationTests/DefaultImplementationTests.swift",
        "Fakes/AccessToken.swift",
        "Fakes/CapturingAuthorizeHandler.swift",
        "Fakes/CapturingLogger.swift",
        "Fakes/FakeAuthenticationMiddleware.swift",
        "Fakes/FakeClientGetter.swift",
        "Fakes/FakeCodeManager.swift",
        "Fakes/FakeResourceServerRetriever.swift",
        "Fakes/FakeSessions.swift",
        "Fakes/FakeTokenManager.swift",
        "Fakes/FakeUserManager.swift",
        "Fakes/RefreshToken.swift",
        "Fakes/StubCodeManager.swift",
        "Fakes/StubTokenManager.swift",
        "Fakes/StubUserManager.swift",
        "GrantTests/AuthorizationCodeTokenTests.swift",
        "GrantTests/ClientCredentialsTokenTests.swift",
        "GrantTests/ImplicitGrantTests.swift",
        "GrantTests/PasswordGrantTokenTests.swift",
        "GrantTests/TokenRefreshTests.swift",
        "Helpers/HTTPHeaders+location.swift",
        "Helpers/Responses.swift",
        "Helpers/TestDataBuilder.swift",
        "IntegrationTests/AuthCodeResourceServerTests.swift",
        "TokenIntrospectionTests/TokenIntrospectionTests.swift"
      ],
      "target_dependencies" : [
        "VaporOAuth"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VaporOAuth",
      "module_type" : "SwiftTarget",
      "name" : "VaporOAuth",
      "path" : "Sources/VaporOAuth",
      "product_dependencies" : [
        "Vapor"
      ],
      "product_memberships" : [
        "OAuth"
      ],
      "sources" : [
        "DefaultImplementations/EmptyAuthorizationHandler.swift",
        "DefaultImplementations/EmptyCodeManager.swift",
        "DefaultImplementations/EmptyResourceServerRetriever.swift",
        "DefaultImplementations/EmptyUserManager.swift",
        "DefaultImplementations/StaticClientRetriever.swift",
        "Helper/OAuthHelper+local.swift",
        "Helper/OAuthHelper+remote.swift",
        "Helper/OAuthHelper.swift",
        "Middleware/OAuth2ScopeMiddleware.swift",
        "Middleware/OAuth2TokenIntrospectionMiddleware.swift",
        "Middleware/TokenIntrospectionAuthenticationMiddleware.swift",
        "Models/OAuthClient.swift",
        "Models/OAuthCode.swift",
        "Models/OAuthResourceServer.swift",
        "Models/OAuthUser.swift",
        "Models/Tokens/AccessToken.swift",
        "Models/Tokens/RefreshToken.swift",
        "OAuth2.swift",
        "Protocols/AuthorizeHandler.swift",
        "Protocols/ClientRetriever.swift",
        "Protocols/CodeManager.swift",
        "Protocols/ResourceServerRetriever.swift",
        "Protocols/TokenManager.swift",
        "Protocols/UserManager.swift",
        "RouteHandlers/AuthorizeGetHandler.swift",
        "RouteHandlers/AuthorizePostHandler.swift",
        "RouteHandlers/TokenHandler.swift",
        "RouteHandlers/TokenHandlers/AuthCodeTokenHandler.swift",
        "RouteHandlers/TokenHandlers/ClientCredentialsTokenHandler.swift",
        "RouteHandlers/TokenHandlers/PasswordTokenHandler.swift",
        "RouteHandlers/TokenHandlers/RefreshTokenHandler.swift",
        "RouteHandlers/TokenHandlers/TokenResponseGenerator.swift",
        "RouteHandlers/TokenIntrospectionHandler.swift",
        "Utilities/OAuthFlowType.swift",
        "Utilities/StringDefines.swift",
        "Utilities/TokenAuthenticator.swift",
        "Validators/ClientValidator.swift",
        "Validators/CodeValidator.swift",
        "Validators/ResourceServerAuthenticator.swift",
        "Validators/ScopeValidator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/vapor/vapor.git
[1/74378] Fetching vapor
Fetched https://github.com/vapor/vapor.git from cache (2.87s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 4.115.0 (3.71s)
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/vapor/websocket-kit.git
Fetching https://github.com/apple/swift-distributed-tracing.git
Fetching https://github.com/apple/swift-service-context.git
Fetching https://github.com/vapor/multipart-kit.git
[1/1063] Fetching swift-service-context
[841/4382] Fetching swift-service-context, multipart-kit
[1961/10341] Fetching swift-service-context, multipart-kit, swift-algorithms
[3526/12051] Fetching swift-service-context, multipart-kit, swift-algorithms, swift-atomics
[7317/14660] Fetching swift-service-context, multipart-kit, swift-algorithms, swift-atomics, websocket-kit
[8227/19634] Fetching swift-service-context, multipart-kit, swift-algorithms, swift-atomics, websocket-kit, swift-distributed-tracing
Fetched https://github.com/apple/swift-algorithms.git from cache (0.56s)
Fetching https://github.com/apple/swift-metrics.git
[11984/15881] Fetching swift-service-context, multipart-kit, swift-atomics, websocket-kit, swift-distributed-tracing, swift-metrics
Fetched https://github.com/apple/swift-metrics.git from cache (0.37s)
Fetching https://github.com/apple/swift-log.git
[12005/13675] Fetching swift-service-context, multipart-kit, swift-atomics, websocket-kit, swift-distributed-tracing
[12006/17511] Fetching swift-service-context, multipart-kit, swift-atomics, websocket-kit, swift-distributed-tracing, swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.53s)
Fetching https://github.com/apple/swift-nio-extras.git
Fetched https://github.com/apple/swift-service-context.git from cache (1.75s)
Fetched https://github.com/vapor/websocket-kit.git from cache (1.75s)
Fetched https://github.com/apple/swift-atomics.git from cache (1.76s)
Fetching https://github.com/apple/swift-nio-ssl.git
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (1.76s)
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-nio-http2.git
[1/5914] Fetching swift-nio-extras
Fetched https://github.com/vapor/multipart-kit.git from cache (1.82s)
Fetching https://github.com/apple/swift-crypto.git
[5915/17441] Fetching swift-nio-extras, swift-nio-http2
Fetched https://github.com/apple/swift-nio-extras.git from cache (0.63s)
[116/11527] Fetching swift-nio-http2
Fetching https://github.com/vapor/console-kit.git
[1269/25463] Fetching swift-nio-http2, swift-crypto
[3513/101556] Fetching swift-nio-http2, swift-crypto, swift-nio
[4923/116399] Fetching swift-nio-http2, swift-crypto, swift-nio, swift-nio-ssl
[12283/122046] Fetching swift-nio-http2, swift-crypto, swift-nio, swift-nio-ssl, console-kit
Fetched https://github.com/vapor/console-kit.git from cache (0.56s)
[28495/116399] Fetching swift-nio-http2, swift-crypto, swift-nio, swift-nio-ssl
Fetching https://github.com/vapor/async-kit.git
[52059/118769] Fetching swift-nio-http2, swift-crypto, swift-nio, swift-nio-ssl, async-kit
Fetched https://github.com/vapor/async-kit.git from cache (0.52s)
[61646/116399] Fetching swift-nio-http2, swift-crypto, swift-nio, swift-nio-ssl
Fetching https://github.com/swift-server/async-http-client.git
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.62s)
[63168/104872] Fetching swift-crypto, swift-nio, swift-nio-ssl
[75680/118886] Fetching swift-crypto, swift-nio, swift-nio-ssl, async-http-client
Fetched https://github.com/apple/swift-crypto.git from cache (2.59s)
[82123/104950] Fetching swift-nio, swift-nio-ssl, async-http-client
Fetched https://github.com/swift-server/async-http-client.git from cache (1.46s)
[71913/90936] Fetching swift-nio, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-ssl.git from cache (3.10s)
[60114/76093] Fetching swift-nio
Fetching https://github.com/vapor/routing-kit.git
Fetched https://github.com/apple/swift-nio.git from cache (6.55s)
[1/20727] Fetching routing-kit
Fetched https://github.com/vapor/routing-kit.git from cache (1.03s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (9.83s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.0 (0.72s)
Computing version for https://github.com/vapor/routing-kit.git
Computed https://github.com/vapor/routing-kit.git at 4.9.2 (0.58s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.60s)
Fetching https://github.com/apple/swift-numerics.git
[1/5706] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.45s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (1.43s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
[1/4391] Fetching swift-system
[880/20982] Fetching swift-system, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (0.43s)
[4314/16591] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.25s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (2.36s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (0.96s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.16.1 (1.63s)
Fetching https://github.com/apple/swift-nio-transport-services.git
[1/2667] Fetching swift-nio-transport-services
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (3.02s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.2.0 (6.08s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.0 (1.70s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.51s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.27.1 (0.73s)
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-async-algorithms.git
[1/2426] Fetching swift-service-lifecycle
[2427/4016] Fetching swift-service-lifecycle, swift-asn1
[2841/4920] Fetching swift-service-lifecycle, swift-asn1, swift-http-types
[2860/6061] Fetching swift-service-lifecycle, swift-asn1, swift-http-types, swift-http-structured-headers
[3703/11046] Fetching swift-service-lifecycle, swift-asn1, swift-http-types, swift-http-structured-headers, swift-async-algorithms
[5822/17201] Fetching swift-service-lifecycle, swift-asn1, swift-http-types, swift-http-structured-headers, swift-async-algorithms, swift-certificates
Fetched https://github.com/apple/swift-http-types.git from cache (0.45s)
[15867/16297] Fetching swift-service-lifecycle, swift-asn1, swift-http-structured-headers, swift-async-algorithms, swift-certificates
Fetched https://github.com/apple/swift-asn1.git from cache (0.45s)
[14400/14707] Fetching swift-service-lifecycle, swift-http-structured-headers, swift-async-algorithms, swift-certificates
Fetched https://github.com/apple/swift-async-algorithms.git from cache (0.62s)
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (0.63s)
Fetched https://github.com/apple/swift-certificates.git from cache (0.64s)
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.64s)
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 (1.30s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.0.4 (0.93s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.10.0 (0.98s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (1.95s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (0.63s)
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.02s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (0.97s)
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 (0.99s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (1.20s)
Computing version for https://github.com/vapor/console-kit.git
Computed https://github.com/vapor/console-kit.git at 4.15.2 (0.71s)
Computing version for https://github.com/vapor/async-kit.git
Computed https://github.com/vapor/async-kit.git at 1.20.0 (0.66s)
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.95s)
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.35s)
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 (0.57s)
Computing version for https://github.com/vapor/multipart-kit.git
Computed https://github.com/vapor/multipart-kit.git at 4.7.1 (0.53s)
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-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-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.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-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-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-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/apple/swift-distributed-tracing.git
Working copy of https://github.com/apple/swift-distributed-tracing.git resolved at 1.2.0
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/vapor/websocket-kit.git
Working copy of https://github.com/vapor/websocket-kit.git resolved at 2.16.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/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 4.115.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-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-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.0
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/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-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-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/vapor/console-kit.git
Working copy of https://github.com/vapor/console-kit.git resolved at 4.15.2
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-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/vapor/multipart-kit.git
Working copy of https://github.com/vapor/multipart-kit.git resolved at 4.7.1
Creating working copy for https://github.com/vapor/routing-kit.git
Working copy of https://github.com/vapor/routing-kit.git resolved at 4.9.2
Creating working copy for https://github.com/apple/swift-metrics.git
Working copy of https://github.com/apple/swift-metrics.git resolved at 2.7.0
Creating working copy for https://github.com/vapor/async-kit.git
Working copy of https://github.com/vapor/async-kit.git resolved at 1.20.0
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-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Building for debugging...
[0/831] Write sources
[42/831] Compiling CNIOWindows shim.c
[43/831] Write sources
[44/831] Compiling CNIOWASI CNIOWASI.c
[45/831] Compiling CNIOWindows WSAStartup.c
[46/831] Write sources
/host/spi-builder-workspace/.build/checkouts/async-http-client/Sources/CAsyncHTTPClient/CAsyncHTTPClient.c:37:38: error: call to undeclared function 'strptime_l'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
   37 |     const char * firstNonProcessed = strptime_l(string, format, result, (locale_t)locale);
      |                                      ^
/host/spi-builder-workspace/.build/checkouts/async-http-client/Sources/CAsyncHTTPClient/CAsyncHTTPClient.c:37:38: note: did you mean 'strftime_l'?
/root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/WASI.sdk/include/wasm32-wasi/time.h:93:8: note: 'strftime_l' declared here
   93 | size_t strftime_l (char *  __restrict, size_t, const char *  __restrict, const struct tm *  __restrict, locale_t);
      |        ^
/host/spi-builder-workspace/.build/checkouts/async-http-client/Sources/CAsyncHTTPClient/CAsyncHTTPClient.c:37:18: error: incompatible integer to pointer conversion initializing 'const char *' with an expression of type 'int' [-Wint-conversion]
   37 |     const char * firstNonProcessed = strptime_l(string, format, result, (locale_t)locale);
      |                  ^                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 errors generated.
[53/831] Compiling CAsyncHTTPClient CAsyncHTTPClient.c
[53/831] Compiling _NumericsShims _NumericsShims.c
[53/831] Compiling CVaporBcrypt bcrypt.c
[53/831] Compiling _AtomicsShims.c
[53/831] Compiling CSystem shims.c
[53/831] Compiling c-atomics.c
[53/831] Compiling CVaporBcrypt blf.c
[53/831] Write swift-version-24593BA9C3E375BF.txt
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/778] Compiling _NumericsShims _NumericsShims.c
[1/778] Compiling CSystem shims.c
[2/778] Write swift-version-24593BA9C3E375BF.txt
[3/778] Compiling _AtomicsShims.c
[4/778] Compiling CNIOLinux shim.c
[5/778] Compiling CNIOLinux liburing_shims.c
[6/778] Compiling CNIOSHA1 c_nio_sha1.c
[7/778] Compiling CVaporBcrypt blf.c
[8/778] Compiling CVaporBcrypt bcrypt.c
[9/778] Compiling CCryptoBoringSSLShims shims.c
[11/844] Emitting module _NIOBase64
[12/844] Emitting module RealModule
[12/845] Compiling CNIOLLHTTP c_nio_llhttp.c
[14/848] Emitting module InternalCollectionsUtilities
[15/849] Emitting module Logging
[16/849] Compiling Logging Locks.swift
[17/849] Emitting module ServiceContextModule
[18/849] Compiling RealModule Real.swift
[19/849] Compiling RealModule Float80+Real.swift
[20/849] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[21/849] Compiling InternalCollectionsUtilities Debugging.swift
[22/849] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[23/849] Compiling InternalCollectionsUtilities Descriptions.swift
[24/849] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[25/849] Compiling RealModule RealFunctions.swift
[26/849] Compiling ServiceContextModule ServiceContext.swift
[27/849] Compiling ServiceContextModule ServiceContextKey.swift
[28/849] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[29/849] Compiling InternalCollectionsUtilities _SortedCollection.swift
[30/849] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[31/849] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[32/850] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[33/850] Compiling InternalCollectionsUtilities Integer rank.swift
[34/850] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[35/850] Compiling InternalCollectionsUtilities UInt+reversed.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[36/850] Emitting module SystemPackage
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:197:57: error: cannot find type 'DIR' in scope
195 | internal typealias system_DIRPtr = OpaquePointer
196 | #else
197 | internal typealias system_DIRPtr = UnsafeMutablePointer<DIR>
    |                                                         `- error: cannot find type 'DIR' in scope
198 | #endif
199 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:192:30: error: cannot find 'DT_DIR' in scope
190 | #if !os(Windows)
191 | internal let SYSTEM_AT_REMOVE_DIR = AT_REMOVEDIR
192 | internal let SYSTEM_DT_DIR = DT_DIR
    |                              `- error: cannot find 'DT_DIR' in scope
193 | internal typealias system_dirent = dirent
194 | #if os(Linux) || os(Android) || os(FreeBSD) || os(OpenBSD)
[37/851] Compiling _NIOBase64 Base64.swift
[38/854] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[41/854] Compiling SystemPackage MachPort.swift
[42/854] Compiling SystemPackage PlatformString.swift
[43/854] Compiling SystemPackage SystemString.swift
[44/855] Compiling RealModule Float16+Real.swift
[50/855] Compiling RealModule ElementaryFunctions.swift
[51/855] Compiling RealModule Float+Real.swift
[57/867] Compiling _NIODataStructures _TinyArray.swift
[58/867] Compiling _NIODataStructures PriorityQueue.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[59/890] Emitting module CoreMetrics
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:56:49: error: cannot find type 'pthread_mutex_t' in scope
 54 |         UnsafeMutablePointer.allocate(capacity: 1)
 55 |     #else
 56 |     fileprivate let mutex: UnsafeMutablePointer<pthread_mutex_t> =
    |                                                 `- error: cannot find type 'pthread_mutex_t' in scope
 57 |         UnsafeMutablePointer.allocate(capacity: 1)
 58 |     #endif
[60/890] Compiling CoreMetrics Locks.swift
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:56:49: error: cannot find type 'pthread_mutex_t' in scope
 54 |         UnsafeMutablePointer.allocate(capacity: 1)
 55 |     #else
 56 |     fileprivate let mutex: UnsafeMutablePointer<pthread_mutex_t> =
    |                                                 `- error: cannot find type 'pthread_mutex_t' in scope
 57 |         UnsafeMutablePointer.allocate(capacity: 1)
 58 |     #endif
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:65:20: error: cannot find 'pthread_mutexattr_t' in scope
 63 |         InitializeSRWLock(self.mutex)
 64 |         #else
 65 |         var attr = pthread_mutexattr_t()
    |                    `- error: cannot find 'pthread_mutexattr_t' in scope
 66 |         pthread_mutexattr_init(&attr)
 67 |         pthread_mutexattr_settype(&attr, .init(PTHREAD_MUTEX_ERRORCHECK))
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:66:9: error: cannot find 'pthread_mutexattr_init' in scope
 64 |         #else
 65 |         var attr = pthread_mutexattr_t()
 66 |         pthread_mutexattr_init(&attr)
    |         `- error: cannot find 'pthread_mutexattr_init' in scope
 67 |         pthread_mutexattr_settype(&attr, .init(PTHREAD_MUTEX_ERRORCHECK))
 68 |
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:67:9: error: cannot find 'pthread_mutexattr_settype' in scope
 65 |         var attr = pthread_mutexattr_t()
 66 |         pthread_mutexattr_init(&attr)
 67 |         pthread_mutexattr_settype(&attr, .init(PTHREAD_MUTEX_ERRORCHECK))
    |         `- error: cannot find 'pthread_mutexattr_settype' in scope
 68 |
 69 |         let err = pthread_mutex_init(self.mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:67:48: error: cannot find 'PTHREAD_MUTEX_ERRORCHECK' in scope
 65 |         var attr = pthread_mutexattr_t()
 66 |         pthread_mutexattr_init(&attr)
 67 |         pthread_mutexattr_settype(&attr, .init(PTHREAD_MUTEX_ERRORCHECK))
    |                                                `- error: cannot find 'PTHREAD_MUTEX_ERRORCHECK' in scope
 68 |
 69 |         let err = pthread_mutex_init(self.mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:67:43: error: cannot infer contextual base in reference to member 'init'
 65 |         var attr = pthread_mutexattr_t()
 66 |         pthread_mutexattr_init(&attr)
 67 |         pthread_mutexattr_settype(&attr, .init(PTHREAD_MUTEX_ERRORCHECK))
    |                                           `- error: cannot infer contextual base in reference to member 'init'
 68 |
 69 |         let err = pthread_mutex_init(self.mutex, &attr)
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:69:19: error: cannot find 'pthread_mutex_init' in scope
 67 |         pthread_mutexattr_settype(&attr, .init(PTHREAD_MUTEX_ERRORCHECK))
 68 |
 69 |         let err = pthread_mutex_init(self.mutex, &attr)
    |                   `- error: cannot find 'pthread_mutex_init' in scope
 70 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
 71 |         #endif
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:78:19: error: cannot find 'pthread_mutex_destroy' in scope
 76 |         // SRWLOCK does not need to be free'd
 77 |         #else
 78 |         let err = pthread_mutex_destroy(self.mutex)
    |                   `- error: cannot find 'pthread_mutex_destroy' in scope
 79 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
 80 |         #endif
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:92:19: error: cannot find 'pthread_mutex_lock' in scope
 90 |         AcquireSRWLockExclusive(self.mutex)
 91 |         #else
 92 |         let err = pthread_mutex_lock(self.mutex)
    |                   `- error: cannot find 'pthread_mutex_lock' in scope
 93 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
 94 |         #endif
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:105:19: error: cannot find 'pthread_mutex_unlock' in scope
103 |         ReleaseSRWLockExclusive(self.mutex)
104 |         #else
105 |         let err = pthread_mutex_unlock(self.mutex)
    |                   `- error: cannot find 'pthread_mutex_unlock' in scope
106 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
107 |         #endif
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:177:14: error: value of type 'ReadWriteLock' has no member 'rwlock'
175 |         precondition(err == 0, "\(#function) failed in pthread_rwlock with error \(err)")
176 |         #endif
177 |         self.rwlock.deallocate()
    |              `- error: value of type 'ReadWriteLock' has no member 'rwlock'
178 |     }
179 |
[61/892] Compiling CoreMetrics Metrics.swift
/host/spi-builder-workspace/.build/checkouts/swift-metrics/Sources/CoreMetrics/Locks.swift:56:49: error: cannot find type 'pthread_mutex_t' in scope
 54 |         UnsafeMutablePointer.allocate(capacity: 1)
 55 |     #else
 56 |     fileprivate let mutex: UnsafeMutablePointer<pthread_mutex_t> =
    |                                                 `- error: cannot find type 'pthread_mutex_t' in scope
 57 |         UnsafeMutablePointer.allocate(capacity: 1)
 58 |     #endif
[62/915] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:192:30: error: cannot find 'DT_DIR' in scope
190 | #if !os(Windows)
191 | internal let SYSTEM_AT_REMOVE_DIR = AT_REMOVEDIR
192 | internal let SYSTEM_DT_DIR = DT_DIR
    |                              `- error: cannot find 'DT_DIR' in scope
193 | internal typealias system_dirent = dirent
194 | #if os(Linux) || os(Android) || os(FreeBSD) || os(OpenBSD)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:197:57: error: cannot find type 'DIR' in scope
195 | internal typealias system_DIRPtr = OpaquePointer
196 | #else
197 | internal typealias system_DIRPtr = UnsafeMutablePointer<DIR>
    |                                                         `- error: cannot find type 'DIR' in scope
198 | #endif
199 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:252:10: error: cannot find 'umask' in scope
250 |   _ mode: CInterop.Mode
251 | ) -> CInterop.Mode {
252 |   return umask(mode)
    |          `- error: cannot find 'umask' in scope
253 | }
254 |
[63/915] Compiling OrderedCollections OrderedDictionary+Elements.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:192:30: error: cannot find 'DT_DIR' in scope
190 | #if !os(Windows)
191 | internal let SYSTEM_AT_REMOVE_DIR = AT_REMOVEDIR
192 | internal let SYSTEM_DT_DIR = DT_DIR
    |                              `- error: cannot find 'DT_DIR' in scope
193 | internal typealias system_dirent = dirent
194 | #if os(Linux) || os(Android) || os(FreeBSD) || os(OpenBSD)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:197:57: error: cannot find type 'DIR' in scope
195 | internal typealias system_DIRPtr = OpaquePointer
196 | #else
197 | internal typealias system_DIRPtr = UnsafeMutablePointer<DIR>
    |                                                         `- error: cannot find type 'DIR' in scope
198 | #endif
199 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:252:10: error: cannot find 'umask' in scope
250 |   _ mode: CInterop.Mode
251 | ) -> CInterop.Mode {
252 |   return umask(mode)
    |          `- error: cannot find 'umask' in scope
253 | }
254 |
[64/915] Compiling OrderedCollections OrderedDictionary+Equatable.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:192:30: error: cannot find 'DT_DIR' in scope
190 | #if !os(Windows)
191 | internal let SYSTEM_AT_REMOVE_DIR = AT_REMOVEDIR
192 | internal let SYSTEM_DT_DIR = DT_DIR
    |                              `- error: cannot find 'DT_DIR' in scope
193 | internal typealias system_dirent = dirent
194 | #if os(Linux) || os(Android) || os(FreeBSD) || os(OpenBSD)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:197:57: error: cannot find type 'DIR' in scope
195 | internal typealias system_DIRPtr = OpaquePointer
196 | #else
197 | internal typealias system_DIRPtr = UnsafeMutablePointer<DIR>
    |                                                         `- error: cannot find type 'DIR' in scope
198 | #endif
199 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:252:10: error: cannot find 'umask' in scope
250 |   _ mode: CInterop.Mode
251 | ) -> CInterop.Mode {
252 |   return umask(mode)
    |          `- error: cannot find 'umask' in scope
253 | }
254 |
[65/915] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:192:30: error: cannot find 'DT_DIR' in scope
190 | #if !os(Windows)
191 | internal let SYSTEM_AT_REMOVE_DIR = AT_REMOVEDIR
192 | internal let SYSTEM_DT_DIR = DT_DIR
    |                              `- error: cannot find 'DT_DIR' in scope
193 | internal typealias system_dirent = dirent
194 | #if os(Linux) || os(Android) || os(FreeBSD) || os(OpenBSD)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:197:57: error: cannot find type 'DIR' in scope
195 | internal typealias system_DIRPtr = OpaquePointer
196 | #else
197 | internal typealias system_DIRPtr = UnsafeMutablePointer<DIR>
    |                                                         `- error: cannot find type 'DIR' in scope
198 | #endif
199 |
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/Internals/Syscalls.swift:252:10: error: cannot find 'umask' in scope
250 |   _ mode: CInterop.Mode
251 | ) -> CInterop.Mode {
252 |   return umask(mode)
    |          `- error: cannot find 'umask' in scope
253 | }
254 |
[66/931] Emitting module _NIODataStructures
BUILD FAILURE 6.1 wasm