Build Information
Failed to build CombineURLSession, reference main (668f56), with Swift 6.1 for Android on 28 May 2025 05:15:43 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/DanielMandea/url-session-combine.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/DanielMandea/url-session-combine
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 668f560 Added support for mapping errors under http error code
Cloned https://github.com/DanielMandea/url-session-combine.git
Revision (git rev-parse @):
668f5607d07f6d568751c1149caf0137ed2c8a1f
SUCCESS checkout https://github.com/DanielMandea/url-session-combine.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/DanielMandea/url-session-combine.git
https://github.com/DanielMandea/url-session-combine.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "anycodable",
"requirement" : {
"range" : [
{
"lower_bound" : "0.6.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Flight-School/AnyCodable"
}
],
"manifest_display_name" : "CombineURLSession",
"name" : "CombineURLSession",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CombineURLSession",
"targets" : [
"CombineURLSession"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CombineURLSessionTests",
"module_type" : "SwiftTarget",
"name" : "CombineURLSessionTests",
"path" : "Tests/CombineURLSessionTests",
"product_dependencies" : [
"AnyCodable"
],
"sources" : [
"MimeTypeTests.swift"
],
"target_dependencies" : [
"CombineURLSession"
],
"type" : "test"
},
{
"c99name" : "CombineURLSession",
"module_type" : "SwiftTarget",
"name" : "CombineURLSession",
"path" : "Sources/CombineURLSession",
"product_dependencies" : [
"AnyCodable"
],
"product_memberships" : [
"CombineURLSession"
],
"sources" : [
"Model/CodableToDictionary.swift",
"Model/Extension/DataToStringExtension.swift",
"Model/SessionError.swift",
"Model/TextError.swift",
"Session/BaseRestService.swift",
"Session/Extensions/RestServiceExtension.swift",
"Session/Extensions/URLSessionExtension.swift",
"Session/RestService.swift",
"Session/SessionHolder.swift",
"URLRequest/Extensions/URLRequestExtension.swift",
"URLRequest/HTTPMethod.swift",
"URLRequest/MimeType.swift",
"URLRequest/Multipart.swift",
"URLRequest/MultipartFormData.swift",
"URLRequest/MultipartURLRequest.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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 -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:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/Flight-School/AnyCodable
[1/782] Fetching anycodable
Fetched https://github.com/Flight-School/AnyCodable from cache (0.24s)
Computing version for https://github.com/Flight-School/AnyCodable
Computed https://github.com/Flight-School/AnyCodable at 0.6.7 (1.21s)
Creating working copy for https://github.com/Flight-School/AnyCodable
Working copy of https://github.com/Flight-School/AnyCodable resolved at 0.6.7
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/7] Compiling AnyCodable AnyCodable.swift
[5/7] Emitting module AnyCodable
[6/7] Compiling AnyCodable AnyDecodable.swift
[7/7] Compiling AnyCodable AnyEncodable.swift
[9/23] Compiling CombineURLSession URLSessionExtension.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[10/23] Compiling CombineURLSession RestService.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[11/24] Compiling CombineURLSession Multipart.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[12/24] Compiling CombineURLSession MultipartFormData.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[13/24] Compiling CombineURLSession SessionError.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[14/24] Compiling CombineURLSession TextError.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[15/24] Compiling CombineURLSession BaseRestService.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[16/24] Compiling CombineURLSession RestServiceExtension.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[17/24] Emitting module CombineURLSession
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[18/24] Compiling CombineURLSession CodableToDictionary.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[19/24] Compiling CombineURLSession DataToStringExtension.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[20/24] Compiling CombineURLSession HTTPMethod.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[21/24] Compiling CombineURLSession MimeType.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[22/24] Compiling CombineURLSession SessionHolder.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[23/24] Compiling CombineURLSession URLRequestExtension.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[24/24] Compiling CombineURLSession MultipartURLRequest.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/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:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/5] Compiling AnyCodable AnyCodable.swift
[3/5] Compiling AnyCodable AnyDecodable.swift
[4/5] Emitting module AnyCodable
[5/5] Compiling AnyCodable AnyEncodable.swift
[7/21] Compiling CombineURLSession URLSessionExtension.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[8/21] Compiling CombineURLSession RestService.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[9/21] Compiling CombineURLSession SessionHolder.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[10/21] Compiling CombineURLSession URLRequestExtension.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/22] Emitting module CombineURLSession
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[12/22] Compiling CombineURLSession SessionError.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[13/22] Compiling CombineURLSession TextError.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[14/22] Compiling CombineURLSession BaseRestService.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[15/22] Compiling CombineURLSession RestServiceExtension.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[16/22] Compiling CombineURLSession CodableToDictionary.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[17/22] Compiling CombineURLSession DataToStringExtension.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[18/22] Compiling CombineURLSession HTTPMethod.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[19/22] Compiling CombineURLSession MimeType.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[20/22] Compiling CombineURLSession Multipart.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[21/22] Compiling CombineURLSession MultipartFormData.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
[22/22] Compiling CombineURLSession MultipartURLRequest.swift
/host/spi-builder-workspace/Sources/CombineURLSession/Session/Extensions/RestServiceExtension.swift:9:8: error: no such module 'Combine'
7 |
8 | import Foundation
9 | import Combine
| `- error: no such module 'Combine'
10 |
11 | extension RestService where Self: SessionHolder {
BUILD FAILURE 6.1 android