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 Seagull, reference master (4c9a7f), with Swift 6.1 for Android on 27 May 2025 07:15:05 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/gavrilaf/seagull.git
Reference: master
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/gavrilaf/seagull
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 4c9a7f6 Update README.md
Cloned https://github.com/gavrilaf/seagull.git
Revision (git rev-parse @):
4c9a7f6c9cd8d8a306a70c08174eaea77b96e46e
SUCCESS checkout https://github.com/gavrilaf/seagull.git at master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/gavrilaf/seagull.git
https://github.com/gavrilaf/seagull.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "result",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.0",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/antitypical/Result.git"
    },
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.9.5",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swiftperftool",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/gavrilaf/SwiftPerfTool.git"
    },
    {
      "identity" : "sgrouter",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/gavrilaf/SgRouter.git"
    }
  ],
  "manifest_display_name" : "Seagull",
  "name" : "Seagull",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Seagull",
      "targets" : [
        "Seagull"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SeagullRestDemo",
      "targets" : [
        "SeagullRestDemo"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "SeagullPerfTest",
      "targets" : [
        "SeagullPerfTest"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SeagullTests",
      "module_type" : "SwiftTarget",
      "name" : "SeagullTests",
      "path" : "Tests/SeagullTests",
      "sources" : [
        "EngineIntegrationTests.swift",
        "EngineNIOTests.swift",
        "Helpers/Asserts.swift",
        "Helpers/NIO+TestHelpers.swift",
        "Helpers/Resources+TestHelpres.swift",
        "Helpers/Route+TestHelpers.swift",
        "Helpers/TestServer.swift",
        "RouterTests.swift",
        "SgHandlerTests.swift"
      ],
      "target_dependencies" : [
        "Seagull"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SeagullRestDemo",
      "module_type" : "SwiftTarget",
      "name" : "SeagullRestDemo",
      "path" : "Sources/Examples/SeagullRestDemo",
      "product_memberships" : [
        "SeagullRestDemo"
      ],
      "sources" : [
        "SafeMap.swift",
        "handlers.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "Seagull"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SeagullPerfTest",
      "module_type" : "SwiftTarget",
      "name" : "SeagullPerfTest",
      "path" : "Sources/Examples/SeagullPerfTest",
      "product_dependencies" : [
        "SwiftPerfTool"
      ],
      "product_memberships" : [
        "SeagullPerfTest"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Seagull"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "Seagull",
      "module_type" : "SwiftTarget",
      "name" : "Seagull",
      "path" : "Sources/Seagull",
      "product_dependencies" : [
        "NIO",
        "NIOHTTP1",
        "NIOConcurrencyHelpers",
        "Result",
        "SgRouter"
      ],
      "product_memberships" : [
        "Seagull",
        "SeagullRestDemo",
        "SeagullPerfTest"
      ],
      "sources" : [
        "Engine.swift",
        "HTTPHandler.swift",
        "Router/HttpRouter.swift",
        "Router/RouteHandler.swift",
        "Router/RouterGroup.swift",
        "Router/UriHandler.swift",
        "Types/Errors.swift",
        "Types/SgDataResponse.swift",
        "Types/SgFileResponse.swift",
        "Types/SgRequest.swift",
        "Types/SgRequestContext.swift",
        "Types/SgResult.swift",
        "Utils/ErrorProvider.swift",
        "Utils/HTTP+Seagull.swift",
        "Utils/LogProvider.swift",
        "Utils/NIOHelpers.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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 -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
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/gavrilaf/SwiftPerfTool.git
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/antitypical/Result.git
Fetching https://github.com/gavrilaf/SgRouter.git
[1/90] Fetching sgrouter
[91/2623] Fetching sgrouter, result
[269/2695] Fetching sgrouter, result, swiftperftool
Fetched https://github.com/gavrilaf/SgRouter.git from cache (0.31s)
[2565/78642] Fetching result, swiftperftool, swift-nio
Fetched https://github.com/gavrilaf/SwiftPerfTool.git from cache (4.23s)
Fetched https://github.com/antitypical/Result.git from cache (4.23s)
Fetched https://github.com/apple/swift-nio.git from cache (4.32s)
Computing version for https://github.com/gavrilaf/SwiftPerfTool.git
Computed https://github.com/gavrilaf/SwiftPerfTool.git at 0.1.1 (4.91s)
Computing version for https://github.com/gavrilaf/SgRouter.git
Computed https://github.com/gavrilaf/SgRouter.git at 0.1.1 (0.62s)
Computing version for https://github.com/antitypical/Result.git
Computed https://github.com/antitypical/Result.git at 4.1.0 (2.84s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 1.14.4 (1.48s)
Fetching https://github.com/apple/swift-nio-zlib-support.git
[1/15] Fetching swift-nio-zlib-support
Fetched https://github.com/apple/swift-nio-zlib-support.git from cache (0.50s)
Computing version for https://github.com/apple/swift-nio-zlib-support.git
Computed https://github.com/apple/swift-nio-zlib-support.git at 1.0.0 (1.24s)
Creating working copy for https://github.com/antitypical/Result.git
Working copy of https://github.com/antitypical/Result.git resolved at 4.1.0
Creating working copy for https://github.com/gavrilaf/SgRouter.git
Working copy of https://github.com/gavrilaf/SgRouter.git resolved at 0.1.1
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 1.14.4
Creating working copy for https://github.com/apple/swift-nio-zlib-support.git
Working copy of https://github.com/apple/swift-nio-zlib-support.git resolved at 1.0.0
Creating working copy for https://github.com/gavrilaf/SwiftPerfTool.git
Working copy of https://github.com/gavrilaf/SwiftPerfTool.git resolved at 0.1.1
warning: 'swift-nio-zlib-support': ignoring declared target(s) 'swift-nio-zlib-support' in the system package
Building for debugging...
[0/32] Write sources
[10/32] Compiling CNIOZlib empty.c
[11/32] Compiling CNIODarwin shim.c
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:50:16: error: call to undeclared function 'TEMP_FAILURE_RETRY'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
   50 |         return TEMP_FAILURE_RETRY(prctl(PR_GET_NAME, name)) == -1 ? -1 : 0;
      |                ^
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:55:14: error: call to undeclared function 'TEMP_FAILURE_RETRY'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
   55 |     int fd = TEMP_FAILURE_RETRY(open(comm_name, O_CLOEXEC | O_RDONLY));
      |              ^
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:59:36: error: call to undeclared function 'read'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
   59 |     ssize_t n = TEMP_FAILURE_RETRY(read(fd, name, len));
      |                                    ^
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:59:36: note: did you mean 'fread'?
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/stdio.h:116:8: note: 'fread' declared here
  116 | size_t fread(void* _Nonnull __buf, size_t __size, size_t __count, FILE* _Nonnull __fp);
      |        ^
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:60:5: error: call to undeclared function 'close'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
   60 |     close(fd);
      |     ^
4 errors generated.
[12/32] Compiling CNIOLinux shim.c
[12/32] Compiling c-atomics.c
[12/32] Compiling CNIOSHA1 c_nio_sha1.c
[12/32] Compiling CNIOLinux ifaddrs-android.c
[12/32] Compiling CNIOHTTPParser c_nio_http_parser.c
[12/32] Write swift-version-24593BA9C3E375BF.txt
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
warning: 'swift-nio-zlib-support': ignoring declared target(s) 'swift-nio-zlib-support' in the system package
[0/1] Planning build
Building for debugging...
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:50:16: error: call to undeclared function 'TEMP_FAILURE_RETRY'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
   50 |         return TEMP_FAILURE_RETRY(prctl(PR_GET_NAME, name)) == -1 ? -1 : 0;
      |                ^
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:55:14: error: call to undeclared function 'TEMP_FAILURE_RETRY'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
   55 |     int fd = TEMP_FAILURE_RETRY(open(comm_name, O_CLOEXEC | O_RDONLY));
      |              ^
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:59:36: error: call to undeclared function 'read'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
   59 |     ssize_t n = TEMP_FAILURE_RETRY(read(fd, name, len));
      |                                    ^
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:59:36: note: did you mean 'fread'?
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/stdio.h:116:8: note: 'fread' declared here
  116 | size_t fread(void* _Nonnull __buf, size_t __size, size_t __count, FILE* _Nonnull __fp);
      |        ^
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/CNIOLinux/shim.c:60:5: error: call to undeclared function 'close'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
   60 |     close(fd);
      |     ^
4 errors generated.
[0/20] Compiling CNIOLinux shim.c
[0/20] Compiling CNIOHTTPParser c_nio_http_parser.c
[0/20] Compiling c-atomics.c
[0/20] Compiling CNIOLinux ifaddrs-android.c
[0/20] Compiling CNIOSHA1 c_nio_sha1.c
[0/20] Write swift-version-24593BA9C3E375BF.txt
BUILD FAILURE 6.1 android