Build Information
Failed to build SteamPress, reference 1.0.0 (56851f
), with Swift 6.1 for Linux on 25 Apr 2025 10:57:52 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brokenhandsio/SteamPress.git
Reference: 1.0.0
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/SteamPress
* tag 1.0.0 -> FETCH_HEAD
HEAD is now at 56851f4 Merge pull request #42 from brokenhandsio/readme-update
Cloned https://github.com/brokenhandsio/SteamPress.git
Revision (git rev-parse @):
56851f476abcb56c0ecf92dce1ce7e29044ac78a
SUCCESS checkout https://github.com/brokenhandsio/SteamPress.git at 1.0.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.1
Building package at path: $PWD
https://github.com/brokenhandsio/SteamPress.git
https://github.com/brokenhandsio/SteamPress.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "vapor",
"requirement" : {
"range" : [
{
"lower_bound" : "3.0.0",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/vapor/vapor.git"
},
{
"identity" : "swiftsoup",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/scinfu/SwiftSoup.git"
},
{
"identity" : "markdown",
"requirement" : {
"range" : [
{
"lower_bound" : "0.4.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/vapor-community/markdown.git"
},
{
"identity" : "auth",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/vapor/auth.git"
}
],
"manifest_display_name" : "SteamPress",
"name" : "SteamPress",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SteamPress",
"targets" : [
"SteamPress"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SteamPressTests",
"module_type" : "SwiftTarget",
"name" : "SteamPressTests",
"path" : "Tests/SteamPressTests",
"sources" : [
"APITests/APITagControllerTests.swift",
"AdminTests/AccessControlTests.swift",
"AdminTests/AdminPageTests.swift",
"AdminTests/AdminPostTests.swift",
"AdminTests/AdminUserTests.swift",
"AdminTests/LoginTests.swift",
"BlogTests/AuthorTests.swift",
"BlogTests/DisabledBlogTagTests.swift",
"BlogTests/IndexTests.swift",
"BlogTests/PostTests.swift",
"BlogTests/SearchTests.swift",
"BlogTests/TagTests.swift",
"Fakes/CapturingViewRenderer.swift",
"Fakes/PasswordHasherChoice.swift",
"Fakes/PlaintextHasher.swift",
"Fakes/Presenters/CapturingAdminPresenter.swift",
"Fakes/Presenters/CapturingBlogPresenter.swift",
"Fakes/ReversedPasswordHasher.swift",
"Fakes/StubbedRandomNumberGenerator.swift",
"Feed Tests/AtomFeedTests.swift",
"Feed Tests/RSSFeedTests.swift",
"Helpers/InMemoryRepository.swift",
"Helpers/SteamPressTestError.swift",
"Helpers/TestDataBuilder.swift",
"Helpers/TestWorld+Application.swift",
"Helpers/TestWorld+Responses.swift",
"Helpers/TestWorld+TestDataBuilder.swift",
"Helpers/TestWorld.swift",
"Models/LoginData.swift",
"ProviderTests.swift",
"ViewTests/BlogAdminPresenterTests.swift",
"ViewTests/BlogPresenterTests.swift",
"ViewTests/BlogViewTests.swift"
],
"target_dependencies" : [
"SteamPress"
],
"type" : "test"
},
{
"c99name" : "SteamPress",
"module_type" : "SwiftTarget",
"name" : "SteamPress",
"path" : "Sources/SteamPress",
"product_dependencies" : [
"Vapor",
"SwiftSoup",
"SwiftMarkdown",
"Authentication"
],
"product_memberships" : [
"SteamPress"
],
"sources" : [
"BlogPathCreator.swift",
"Config/BlogAdminPageInformation.swift",
"Config/BlogGlobalPageInformation.swift",
"Config/FeedInformation.swift",
"Config/PaginationInformation.swift",
"Controllers/API/APIController.swift",
"Controllers/API/APITagController.swift",
"Controllers/Admin/LoginController.swift",
"Controllers/Admin/PostAdminController.swift",
"Controllers/Admin/UserAdminController.swift",
"Controllers/BlogAdminController.swift",
"Controllers/BlogController.swift",
"Controllers/FeedController.swift",
"Extensions/BCrypt+PasswordHasher.swift",
"Extensions/BlogUser+Information.swift",
"Extensions/Request+PageInformation.swift",
"Extensions/Request+PaginationInformation.swift",
"Extensions/String+Optional+Whitespace.swift",
"Extensions/String+Random.swift",
"Extensions/URL+Converters.swift",
"Feed Generators/AtomFeedGenerator.swift",
"Feed Generators/RSSFeedGenerator.swift",
"Middleware/BlogAuthSessionsMiddleware.swift",
"Middleware/BlogLoginRedirectAuthMiddleware.swift",
"Middleware/BlogRememberMeMiddleware.swift",
"Models/BlogPost.swift",
"Models/BlogTag.swift",
"Models/BlogUser.swift",
"Models/Contexts/Admin/AdminPageContext.swift",
"Models/Contexts/Admin/CreatePostPageContext.swift",
"Models/Contexts/Admin/CreateUserPageContext.swift",
"Models/Contexts/Admin/ResetPasswordPageContext.swift",
"Models/Contexts/AllAuthorsPageContext.swift",
"Models/Contexts/AllTagsPageContext.swift",
"Models/Contexts/AuthorPageContext.swift",
"Models/Contexts/BlogIndexPageContext.swift",
"Models/Contexts/BlogPostPageContext.swift",
"Models/Contexts/ContextViews/BlogTagWithPostCount.swift",
"Models/Contexts/ContextViews/ViewBlogAuthor.swift",
"Models/Contexts/ContextViews/ViewBlogPost.swift",
"Models/Contexts/ContextViews/ViewBlogTag.swift",
"Models/Contexts/LoginPageContext.swift",
"Models/Contexts/PaginationTagInformation.swift",
"Models/Contexts/SearchPageContext.swift",
"Models/Contexts/TagPageContext.swift",
"Models/Errors/CreatePostErrors.swift",
"Models/Errors/CreateUserErrors.swift",
"Models/FormData/CreatePostData.swift",
"Models/FormData/CreateUserData.swift",
"Models/FormData/LoginData.swift",
"Models/FormData/ResetPasswordData.swift",
"Presenters/BlogAdminPresenter.swift",
"Presenters/BlogPresenter.swift",
"Presenters/ViewBlogAdminPresenter.swift",
"Presenters/ViewBlogPresenter.swift",
"Provider.swift",
"Repositories/SteamPressRepository.swift",
"Services/LongPostDateFormatter.swift",
"Services/NumericPostFormatter.swift",
"Services/RealRandomNumberGenerator.swift",
"Services/SteamPressRandomNumberGenerator.swift",
"SteamPressError.swift",
"Views/PaginatorTag.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Fetching https://github.com/scinfu/SwiftSoup.git
Fetching https://github.com/vapor/auth.git
Fetching https://github.com/vapor/vapor.git
[1/3908] Fetching swiftsoup
[119/4956] Fetching swiftsoup, auth
[4570/79254] Fetching swiftsoup, auth, vapor
Fetching https://github.com/vapor-community/markdown.git
Fetched https://github.com/scinfu/SwiftSoup.git from cache (0.46s)
[5119/75346] Fetching auth, vapor
[14779/75592] Fetching auth, vapor, markdown
Fetched https://github.com/vapor-community/markdown.git from cache (1.71s)
Fetched https://github.com/vapor/auth.git from cache (3.85s)
Fetched https://github.com/vapor/vapor.git from cache (3.88s)
Computing version for https://github.com/vapor/auth.git
Computed https://github.com/vapor/auth.git at 2.0.4 (6.57s)
Fetching https://github.com/vapor/core.git
Fetching https://github.com/vapor/http.git
Fetching https://github.com/vapor/fluent.git
Fetching https://github.com/vapor/service.git
Fetching https://github.com/vapor/crypto.git
Fetching https://github.com/vapor/fluent-sqlite.git
[1/25467] Fetching http
[1275/38874] Fetching http, fluent
[4265/39793] Fetching http, fluent, service
[9394/59936] Fetching http, fluent, service, core
[12867/62722] Fetching http, fluent, service, core, crypto
[14369/64069] Fetching http, fluent, service, core, crypto, fluent-sqlite
Fetched https://github.com/vapor/fluent-sqlite.git from cache (0.65s)
Fetched https://github.com/vapor/crypto.git from cache (0.65s)
Fetched https://github.com/vapor/service.git from cache (0.67s)
Fetched https://github.com/vapor/fluent.git from cache (0.68s)
Fetched https://github.com/vapor/core.git from cache (0.86s)
Fetched https://github.com/vapor/http.git from cache (0.90s)
Computing version for https://github.com/vapor/fluent-sqlite.git
Computed https://github.com/vapor/fluent-sqlite.git at 3.0.0 (2.00s)
Fetching https://github.com/vapor/sqlite.git
[1/2112] Fetching sqlite
Fetched https://github.com/vapor/sqlite.git from cache (0.55s)
Computing version for https://github.com/vapor/service.git
Computed https://github.com/vapor/service.git at 1.0.2 (1.12s)
Computing version for https://github.com/vapor/sqlite.git
Computed https://github.com/vapor/sqlite.git at 3.3.0 (0.48s)
Fetching https://github.com/vapor/database-kit.git
Fetching https://github.com/vapor/sql.git
[1/1181] Fetching database-kit
[1182/7164] Fetching database-kit, sql
Fetched https://github.com/vapor/database-kit.git from cache (0.35s)
Fetched https://github.com/vapor/sql.git from cache (0.35s)
Computing version for https://github.com/vapor/database-kit.git
Computed https://github.com/vapor/database-kit.git at 1.3.3 (0.85s)
Computing version for https://github.com/vapor-community/markdown.git
Computed https://github.com/vapor-community/markdown.git at 0.7.1 (1.20s)
Fetching https://github.com/brokenhandsio/cmark-gfm.git
[1/12300] Fetching cmark-gfm
Fetched https://github.com/brokenhandsio/cmark-gfm.git from cache (0.71s)
Computing version for https://github.com/brokenhandsio/cmark-gfm.git
Computed https://github.com/brokenhandsio/cmark-gfm.git at 2.1.0 (1.24s)
Computing version for https://github.com/vapor/sql.git
Computed https://github.com/vapor/sql.git at 2.3.2 (0.57s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 3.3.3 (0.53s)
Fetching https://github.com/vapor/template-kit.git
Fetching https://github.com/vapor/websocket.git
Fetching https://github.com/vapor/routing.git
Fetching https://github.com/vapor/multipart.git
Fetching https://github.com/vapor/url-encoded-form.git
Fetching https://github.com/vapor/validation.git
[1/1282] Fetching template-kit
[2/1861] Fetching template-kit, validation
[1862/2242] Fetching template-kit, validation, url-encoded-form
[2095/22965] Fetching template-kit, validation, url-encoded-form, routing
[5352/26161] Fetching template-kit, validation, url-encoded-form, routing, multipart
[7300/28694] Fetching template-kit, validation, url-encoded-form, routing, multipart, websocket
Fetched https://github.com/vapor/validation.git from cache (0.31s)
[14323/28115] Fetching template-kit, url-encoded-form, routing, multipart, websocket
Fetching https://github.com/vapor/console.git
Fetched https://github.com/vapor/url-encoded-form.git from cache (0.33s)
Fetched https://github.com/vapor/template-kit.git from cache (0.33s)
[15147/26452] Fetching routing, multipart, websocket
Fetched https://github.com/vapor/websocket.git from cache (0.39s)
[17794/23919] Fetching routing, multipart
[17795/29404] Fetching routing, multipart, console
Fetched https://github.com/vapor/console.git from cache (0.38s)
[22385/23919] Fetching routing, multipart
Fetched https://github.com/vapor/routing.git from cache (2.39s)
Fetched https://github.com/vapor/multipart.git from cache (2.42s)
Computing version for https://github.com/vapor/http.git
Computed https://github.com/vapor/http.git at 3.4.0 (3.06s)
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-nio.git
[1/75431] Fetching swift-nio
[2/90224] Fetching swift-nio, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.08s)
Fetched https://github.com/apple/swift-nio.git from cache (4.48s)
Computing version for https://github.com/vapor/validation.git
Computed https://github.com/vapor/validation.git at 2.1.1 (5.97s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 1.14.4 (0.60s)
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.20s)
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 (0.72s)
Computing version for https://github.com/vapor/routing.git
Computed https://github.com/vapor/routing.git at 3.1.0 (0.57s)
Computing version for https://github.com/vapor/websocket.git
Computed https://github.com/vapor/websocket.git at 1.1.2 (0.49s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 1.4.0 (0.59s)
Fetching https://github.com/apple/swift-nio-ssl-support.git
[1/16] Fetching swift-nio-ssl-support
Fetched https://github.com/apple/swift-nio-ssl-support.git from cache (0.20s)
Computing version for https://github.com/apple/swift-nio-ssl-support.git
Computed https://github.com/apple/swift-nio-ssl-support.git at 1.0.0 (1.00s)
Computing version for https://github.com/vapor/crypto.git
Computed https://github.com/vapor/crypto.git at 3.4.1 (0.51s)
Computing version for https://github.com/vapor/console.git
Computed https://github.com/vapor/console.git at 3.1.1 (0.99s)
Computing version for https://github.com/vapor/fluent.git
Computed https://github.com/vapor/fluent.git at 3.2.1 (0.51s)
Computing version for https://github.com/vapor/url-encoded-form.git
Computed https://github.com/vapor/url-encoded-form.git at 1.1.0 (0.82s)
Computing version for https://github.com/vapor/template-kit.git
Computed https://github.com/vapor/template-kit.git at 1.5.0 (0.46s)
Computing version for https://github.com/vapor/multipart.git
Computed https://github.com/vapor/multipart.git at 3.1.3 (0.57s)
Computing version for https://github.com/vapor/core.git
Computed https://github.com/vapor/core.git at 3.10.1 (0.87s)
Computing version for https://github.com/scinfu/SwiftSoup.git
Computed https://github.com/scinfu/SwiftSoup.git at 2.8.7 (0.77s)
Creating working copy for https://github.com/vapor-community/markdown.git
Working copy of https://github.com/vapor-community/markdown.git resolved at 0.7.1
Creating working copy for https://github.com/vapor/websocket.git
Working copy of https://github.com/vapor/websocket.git resolved at 1.1.2
Creating working copy for https://github.com/vapor/auth.git
Working copy of https://github.com/vapor/auth.git resolved at 2.0.4
Creating working copy for https://github.com/vapor/console.git
Working copy of https://github.com/vapor/console.git resolved at 3.1.1
Creating working copy for https://github.com/vapor/url-encoded-form.git
Working copy of https://github.com/vapor/url-encoded-form.git resolved at 1.1.0
Creating working copy for https://github.com/vapor/service.git
Working copy of https://github.com/vapor/service.git resolved at 1.0.2
Creating working copy for https://github.com/vapor/routing.git
Working copy of https://github.com/vapor/routing.git resolved at 3.1.0
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/scinfu/SwiftSoup.git
Working copy of https://github.com/scinfu/SwiftSoup.git resolved at 2.8.7
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/vapor/crypto.git
Working copy of https://github.com/vapor/crypto.git resolved at 3.4.1
Creating working copy for https://github.com/vapor/fluent.git
Working copy of https://github.com/vapor/fluent.git resolved at 3.2.1
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 1.4.0
Creating working copy for https://github.com/apple/swift-nio-ssl-support.git
Working copy of https://github.com/apple/swift-nio-ssl-support.git resolved at 1.0.0
Creating working copy for https://github.com/vapor/template-kit.git
Working copy of https://github.com/vapor/template-kit.git resolved at 1.5.0
Creating working copy for https://github.com/brokenhandsio/cmark-gfm.git
Working copy of https://github.com/brokenhandsio/cmark-gfm.git resolved at 2.1.0
Creating working copy for https://github.com/vapor/sql.git
Working copy of https://github.com/vapor/sql.git resolved at 2.3.2
Creating working copy for https://github.com/vapor/sqlite.git
Working copy of https://github.com/vapor/sqlite.git resolved at 3.3.0
Creating working copy for https://github.com/vapor/core.git
Working copy of https://github.com/vapor/core.git resolved at 3.10.1
Creating working copy for https://github.com/vapor/http.git
Working copy of https://github.com/vapor/http.git resolved at 3.4.0
Creating working copy for https://github.com/vapor/fluent-sqlite.git
Working copy of https://github.com/vapor/fluent-sqlite.git resolved at 3.0.0
Creating working copy for https://github.com/vapor/multipart.git
Working copy of https://github.com/vapor/multipart.git resolved at 3.1.3
Creating working copy for https://github.com/vapor/validation.git
Working copy of https://github.com/vapor/validation.git resolved at 2.1.1
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 3.3.3
Creating working copy for https://github.com/vapor/database-kit.git
Working copy of https://github.com/vapor/database-kit.git resolved at 1.3.3
warning: 'swift-nio-ssl-support': ignoring declared target(s) 'swift-nio-ssl-support' in the system package
warning: 'swift-nio-zlib-support': ignoring declared target(s) 'swift-nio-zlib-support' in the system package
Building for debugging...
[0/81] Write sources
[17/81] Compiling cmark cmark_ctype.c
[18/81] Compiling cmark cmark.c
[18/81] Compiling cmark buffer.c
[20/81] Compiling cmark xml.c
[21/81] Compiling cmark autolink.c
[22/81] Compiling cmark tasklist.c
[23/81] Compiling cmark blocks.c
[24/81] Compiling cmark tagfilter.c
[25/81] Compiling cmark strikethrough.c
[26/81] Compiling cmark table.c
[27/81] Compiling cmark syntax_extension.c
[28/81] Compiling cmark render.c
[29/81] Write swift-version-24593BA9C3E375BF.txt
[30/81] Compiling cmark utf8.c
[31/81] Compiling cmark registry.c
[32/81] Compiling cmark plugin.c
[33/81] Compiling cmark references.c
[34/81] Compiling cmark map.c
[35/81] Compiling cmark plaintext.c
[36/81] Compiling cmark node.c
[37/81] Compiling cmark man.c
[38/81] Compiling cmark linked_list.c
[39/83] Compiling cmark iterator.c
[40/83] Compiling cmark html.c
[41/85] Compiling cmark latex.c
[42/95] Compiling cmark scanners.c
[43/120] Compiling cmark houdini_html_e.c
[44/134] Compiling cmark inlines.c
[45/141] Compiling cmark houdini_html_u.c
[46/141] Compiling cmark houdini_href_e.c
[47/141] Compiling cmark footnotes.c
[47/141] Write sources
[57/141] Compiling cmark core-extensions.c
[57/141] Write sources
[64/141] Compiling cmark ext_scanners.c
[65/141] Compiling cmark commonmark.c
[66/141] Compiling cmark arena.c
[66/141] Compiling CNIOZlib empty.c
[68/141] Compiling CNIOSHA1 c_nio_sha1.c
[69/141] Compiling CNIOLinux shim.c
[70/144] Compiling CNIOLinux ifaddrs-android.c
[71/146] Compiling CNIOOpenSSL helpers.c
[72/146] Compiling CNIOOpenSSL shims.c
[73/146] Compiling CNIODarwin shim.c
[74/146] Compiling CNIOHTTPParser c_nio_http_parser.c
[75/146] Compiling CBcrypt blf.c
[76/146] Compiling CBcrypt bcrypt.c
[77/146] Compiling CBase32 base32.c
[78/146] Write sources
[79/146] Compiling CCryptoOpenSSL shim.c
[81/146] Emitting module Debugging
[82/146] Compiling NIOPriorityQueue PriorityQueue.swift
[83/146] Compiling Debugging SourceLocation.swift
[83/146] Compiling c-atomics.c
[85/148] Emitting module SwiftMarkdown
[86/149] Compiling SwiftMarkdown SwiftMarkdown.swift
[87/150] Emitting module COperatingSystem
[88/150] Compiling COperatingSystem libc.swift
[89/151] Emitting module NIOPriorityQueue
[90/151] Compiling NIOPriorityQueue Heap.swift
[94/152] Compiling Debugging Demangler.swift
[95/152] Compiling Debugging Debuggable.swift
[96/153] Compiling SwiftSoup ArrayExt.swift
[97/153] Compiling SwiftSoup Attribute.swift
[98/153] Compiling SwiftSoup Attributes.swift
[99/153] Compiling SwiftSoup BinarySearch.swift
[100/153] Compiling SwiftSoup BooleanAttribute.swift
[101/153] Compiling SwiftSoup CharacterExt.swift
[102/153] Compiling SwiftSoup CharacterReader.swift
[103/153] Compiling SwiftSoup Cleaner.swift
[105/160] Emitting module NIOConcurrencyHelpers
[106/160] Compiling SwiftSoup ParseErrorList.swift
[107/160] Compiling SwiftSoup ParseSettings.swift
[108/160] Compiling SwiftSoup Parser.swift
[109/160] Compiling SwiftSoup ParsingStrings.swift
[110/160] Compiling SwiftSoup Pattern.swift
[111/160] Compiling SwiftSoup QueryParser.swift
[112/160] Compiling SwiftSoup SerializationException.swift
[113/160] Compiling SwiftSoup SimpleDictionary.swift
[114/160] Compiling SwiftSoup StreamReader.swift
[115/160] Compiling SwiftSoup String.swift
[116/160] Compiling SwiftSoup StringBuilder.swift
[117/160] Compiling SwiftSoup StringUtil.swift
[118/160] Compiling SwiftSoup StructuralEvaluator.swift
[119/160] Compiling SwiftSoup SwiftSoup.swift
[120/160] Compiling SwiftSoup Tag.swift
[121/160] Compiling SwiftSoup TextNode.swift
[122/160] Compiling SwiftSoup Token.swift
[123/160] Compiling SwiftSoup TokenQueue.swift
[124/160] Compiling SwiftSoup Tokeniser.swift
[125/160] Compiling SwiftSoup TokeniserState.swift
[126/160] Compiling SwiftSoup TreeBuilder.swift
[127/160] Compiling NIOConcurrencyHelpers lock.swift
[128/160] Emitting module SwiftSoup
[129/160] Compiling NIOConcurrencyHelpers atomics.swift
[131/211] Compiling NIO Codec.swift
[132/211] Compiling NIO CompositeError.swift
[133/211] Compiling NIO ContiguousCollection.swift
[134/211] Compiling NIO DeadChannel.swift
[135/211] Compiling NIO Embedded.swift
[136/211] Compiling NIO EventLoop.swift
[137/211] Compiling NIO EventLoopFuture.swift
[138/211] Compiling NIO FileDescriptor.swift
[139/211] Compiling NIO FileHandle.swift
[140/211] Compiling NIO FileRegion.swift
[141/211] Compiling NIO GetaddrinfoResolver.swift
[142/211] Compiling NIO HappyEyeballs.swift
[143/211] Compiling NIO MarkedCircularBuffer.swift
[144/211] Compiling NIO MulticastChannel.swift
[145/211] Compiling NIO NIOAny.swift
[146/211] Compiling NIO NonBlockingFileIO.swift
[147/211] Compiling NIO BaseSocket.swift
[148/211] Compiling NIO BaseSocketChannel.swift
[149/211] Compiling NIO BlockingIOThreadPool.swift
[150/211] Compiling NIO Bootstrap.swift
[151/211] Compiling NIO ByteBuffer-aux.swift
[152/211] Compiling NIO ByteBuffer-core.swift
[153/211] Compiling NIO ChannelPipeline.swift
[154/211] Compiling NIO CircularBuffer.swift
[155/211] Compiling SwiftSoup UTF8Arrays.swift
[156/211] Compiling SwiftSoup UnfairLock.swift
[157/211] Compiling SwiftSoup UnicodeScalar.swift
[158/211] Compiling SwiftSoup Validate.swift
[159/211] Compiling SwiftSoup Whitelist.swift
[160/211] Compiling SwiftSoup XmlDeclaration.swift
[161/211] Compiling SwiftSoup XmlTreeBuilder.swift
[163/212] Compiling NIO ByteBuffer-int.swift
[164/212] Compiling NIO ByteBuffer-views.swift
[165/212] Compiling NIO Channel.swift
[166/212] Compiling NIO ChannelHandler.swift
[167/212] Compiling NIO ChannelHandlers.swift
[168/212] Compiling NIO ChannelInvoker.swift
[169/212] Compiling NIO ChannelOption.swift
[170/218] Compiling NIO Heap.swift
[171/218] Compiling NIO IO.swift
[172/218] Compiling NIO IOData.swift
[173/218] Compiling NIO IntegerTypes.swift
[174/218] Compiling NIO Interfaces.swift
[175/218] Compiling NIO Linux.swift
[176/218] Compiling NIO LinuxCPUSet.swift
[177/218] Compiling NIO RecvByteBufferAllocator.swift
[178/218] Compiling NIO Resolver.swift
[179/218] Compiling NIO Selectable.swift
[180/218] Compiling NIO Selector.swift
[181/218] Compiling NIO ServerSocket.swift
[182/218] Compiling NIO Socket.swift
[183/218] Compiling NIO SocketAddresses.swift
[188/218] Compiling NIO PendingDatagramWritesManager.swift
[189/218] Compiling NIO PendingWritesManager.swift
[190/218] Compiling NIO PriorityQueue.swift
[205/218] Emitting module NIO
[206/218] Compiling NIO AddressedEnvelope.swift
[213/218] Compiling NIO SocketChannel.swift
[214/218] Compiling NIO SocketOptionProvider.swift
[215/218] Compiling NIO System.swift
[216/218] Compiling NIO Thread.swift
[217/218] Compiling NIO TypeAssistedChannelHandler.swift
[218/218] Compiling NIO Utilities.swift
[220/261] Compiling Bits Data+Bytes.swift
[221/262] Compiling Async FutureType.swift
[222/262] Compiling Async QueueHandler.swift
[223/262] Compiling Bits Bytes.swift
[224/262] Emitting module Async
[225/262] Compiling NIOTLS TLSEvents.swift
[226/263] Compiling Async Collection+Future.swift
[227/263] Compiling Async Deprecated.swift
[228/263] Compiling Async Exports.swift
[229/263] Compiling Async Future+DoCatch.swift
[230/263] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[231/263] Compiling Async Async+NIO.swift
[232/263] Compiling Async AsyncError.swift
[235/264] Compiling Bits Deprecated.swift
[236/264] Emitting module NIOFoundationCompat
[237/264] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[239/265] Compiling Bits Data+Strings.swift
[240/265] Compiling Async Future+Map.swift
[241/265] Compiling Async Future+Transform.swift
[242/265] Compiling Async Worker.swift
[245/265] Emitting module Bits
[248/266] Compiling Async Future+Flatten.swift
[249/266] Compiling Async Future+Global.swift
[250/266] Compiling Async Future+Variadic.swift
[251/266] Compiling Async Future+Void.swift
[255/267] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[257/267] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[258/267] Emitting module NIOTLS
[259/267] Compiling NIOTLS SNIHandler.swift
[261/271] Compiling NIOHTTP1 HTTPUpgradeHandler.swift
[262/296] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[263/296] Compiling NIOHTTP1 HTTPEncoder.swift
[264/296] Compiling NIOHTTP1 HTTPResponseCompressor.swift
[265/296] Emitting module Random
[266/312] Compiling Random URandom.swift
[267/312] Compiling Random RandomProtocol.swift
[268/312] Compiling NIOOpenSSL SSLInit.swift
[269/312] Compiling NIOOpenSSL SSLPKCS12Bundle.swift
[270/312] Compiling NIOOpenSSL SSLPointerTricks.swift
[271/312] Compiling NIOOpenSSL IdentityVerification.swift
[272/312] Compiling NIOOpenSSL OpenSSLClientHandler.swift
[273/312] Compiling NIOOpenSSL SSLErrors.swift
[274/315] Compiling Random Array+Random.swift
[275/315] Compiling Random OSRandom.swift
[277/316] Compiling Core NotFound.swift
[278/316] Compiling Core OptionalType.swift
[279/316] Compiling Core Process+Execute.swift
[280/316] Compiling NIOOpenSSL OpenSSLHandler.swift
[281/316] Compiling NIOOpenSSL OpenSSLServerHandler.swift
[282/316] Compiling Core Reflectable.swift
[283/316] Compiling Core String+Utilities.swift
[284/316] Compiling Core Thread+Async.swift
[285/316] Compiling NIOHTTP1 HTTPTypes.swift
[286/316] Emitting module NIOHTTP1
[290/317] Compiling NIOOpenSSL PosixPort.swift
[291/317] Compiling NIOOpenSSL SSLCertificate.swift
[292/317] Compiling NIOOpenSSL SSLConnection.swift
[293/317] Compiling NIOOpenSSL SSLContext.swift
[294/317] Compiling NIOOpenSSL ByteBufferBIO.swift
[295/326] Compiling NIOOpenSSL SSLPrivateKey.swift
[296/326] Compiling NIOOpenSSL SSLPublicKey.swift
[301/328] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[302/328] Compiling NIOWebSocket WebSocketOpcode.swift
[305/329] Compiling NIOWebSocket Base64.swift
[306/329] Compiling NIOWebSocket SHA1.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLConnection.swift:308:29: error: cannot find 'SSL_get_peer_certificate' in scope
306 | /// if available.
307 | func getPeerCertificate() -> OpenSSLCertificate? {
308 | guard let certPtr = SSL_get_peer_certificate(.make(optional: ssl)) else {
| `- error: cannot find 'SSL_get_peer_certificate' in scope
309 | return nil
310 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLConnection.swift:308:55: error: cannot infer contextual base in reference to member 'make'
306 | /// if available.
307 | func getPeerCertificate() -> OpenSSLCertificate? {
308 | guard let certPtr = SSL_get_peer_certificate(.make(optional: ssl)) else {
| `- error: cannot infer contextual base in reference to member 'make'
309 | return nil
310 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:130:34: error: cannot find 'SSL_OP_NO_COMPRESSION' in scope
128 | CNIOOpenSSL_SSL_CTX_set_mode(ctx, Int(SSL_MODE_RELEASE_BUFFERS | SSL_MODE_AUTO_RETRY))
129 |
130 | var opensslOptions = Int(SSL_OP_NO_COMPRESSION)
| `- error: cannot find 'SSL_OP_NO_COMPRESSION' in scope
131 |
132 | // Handle TLS versions
/usr/include/openssl/ssl.h:387:10: note: macro 'SSL_OP_NO_COMPRESSION' unavailable: structure not supported
385 | # define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION SSL_OP_BIT(16)
386 | /* Don't use compression even if supported */
387 | # define SSL_OP_NO_COMPRESSION SSL_OP_BIT(17)
| `- note: macro 'SSL_OP_NO_COMPRESSION' unavailable: structure not supported
388 | /* Permit unsafe legacy renegotiation */
389 | # define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION SSL_OP_BIT(18)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:135:35: error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
133 | switch configuration.minimumTLSVersion {
134 | case .tlsv13:
135 | opensslOptions |= Int(SSL_OP_NO_TLSv1_2)
| `- error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
136 | fallthrough
137 | case .tlsv12:
/usr/include/openssl/ssl.h:420:10: note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
| `- note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:138:35: error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
136 | fallthrough
137 | case .tlsv12:
138 | opensslOptions |= Int(SSL_OP_NO_TLSv1_1)
| `- error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
139 | fallthrough
140 | case .tlsv11:
/usr/include/openssl/ssl.h:421:10: note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
| `- note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
423 | # define SSL_OP_NO_DTLSv1 SSL_OP_BIT(26)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:141:35: error: cannot find 'SSL_OP_NO_TLSv1' in scope
139 | fallthrough
140 | case .tlsv11:
141 | opensslOptions |= Int(SSL_OP_NO_TLSv1)
| `- error: cannot find 'SSL_OP_NO_TLSv1' in scope
142 | fallthrough
143 | case .tlsv1:
/usr/include/openssl/ssl.h:419:10: note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
| `- note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:144:35: error: cannot find 'SSL_OP_NO_SSLv3' in scope
142 | fallthrough
143 | case .tlsv1:
144 | opensslOptions |= Int(SSL_OP_NO_SSLv3)
| `- error: cannot find 'SSL_OP_NO_SSLv3' in scope
145 | fallthrough
146 | case .sslv3:
/usr/include/openssl/ssl.h:418:10: note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
416 | */
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
| `- note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:155:35: error: cannot find 'SSL_OP_NO_SSLv3' in scope
153 | switch configuration.maximumTLSVersion {
154 | case .some(.sslv2):
155 | opensslOptions |= Int(SSL_OP_NO_SSLv3)
| `- error: cannot find 'SSL_OP_NO_SSLv3' in scope
156 | fallthrough
157 | case .some(.sslv3):
/usr/include/openssl/ssl.h:418:10: note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
416 | */
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
| `- note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:158:35: error: cannot find 'SSL_OP_NO_TLSv1' in scope
156 | fallthrough
157 | case .some(.sslv3):
158 | opensslOptions |= Int(SSL_OP_NO_TLSv1)
| `- error: cannot find 'SSL_OP_NO_TLSv1' in scope
159 | fallthrough
160 | case .some(.tlsv1):
/usr/include/openssl/ssl.h:419:10: note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
| `- note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:161:35: error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
159 | fallthrough
160 | case .some(.tlsv1):
161 | opensslOptions |= Int(SSL_OP_NO_TLSv1_1)
| `- error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
162 | fallthrough
163 | case .some(.tlsv11):
/usr/include/openssl/ssl.h:421:10: note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
| `- note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
423 | # define SSL_OP_NO_DTLSv1 SSL_OP_BIT(26)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:164:35: error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
162 | fallthrough
163 | case .some(.tlsv11):
164 | opensslOptions |= Int(SSL_OP_NO_TLSv1_2)
| `- error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
165 | fallthrough
166 | case .some(.tlsv12):
/usr/include/openssl/ssl.h:420:10: note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
| `- note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:167:35: error: cannot find 'CNIOOpenSSL_SSL_OP_NO_TLSv1_3' in scope
165 | fallthrough
166 | case .some(.tlsv12):
167 | opensslOptions |= Int(CNIOOpenSSL_SSL_OP_NO_TLSv1_3)
| `- error: cannot find 'CNIOOpenSSL_SSL_OP_NO_TLSv1_3' in scope
168 | case .some(.tlsv13), .none:
169 | break
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLConnection.swift:308:29: error: cannot find 'SSL_get_peer_certificate' in scope
306 | /// if available.
307 | func getPeerCertificate() -> OpenSSLCertificate? {
308 | guard let certPtr = SSL_get_peer_certificate(.make(optional: ssl)) else {
| `- error: cannot find 'SSL_get_peer_certificate' in scope
309 | return nil
310 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLConnection.swift:308:55: error: cannot infer contextual base in reference to member 'make'
306 | /// if available.
307 | func getPeerCertificate() -> OpenSSLCertificate? {
308 | guard let certPtr = SSL_get_peer_certificate(.make(optional: ssl)) else {
| `- error: cannot infer contextual base in reference to member 'make'
309 | return nil
310 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:130:34: error: cannot find 'SSL_OP_NO_COMPRESSION' in scope
128 | CNIOOpenSSL_SSL_CTX_set_mode(ctx, Int(SSL_MODE_RELEASE_BUFFERS | SSL_MODE_AUTO_RETRY))
129 |
130 | var opensslOptions = Int(SSL_OP_NO_COMPRESSION)
| `- error: cannot find 'SSL_OP_NO_COMPRESSION' in scope
131 |
132 | // Handle TLS versions
/usr/include/openssl/ssl.h:387:10: note: macro 'SSL_OP_NO_COMPRESSION' unavailable: structure not supported
385 | # define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION SSL_OP_BIT(16)
386 | /* Don't use compression even if supported */
387 | # define SSL_OP_NO_COMPRESSION SSL_OP_BIT(17)
| `- note: macro 'SSL_OP_NO_COMPRESSION' unavailable: structure not supported
388 | /* Permit unsafe legacy renegotiation */
389 | # define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION SSL_OP_BIT(18)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:135:35: error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
133 | switch configuration.minimumTLSVersion {
134 | case .tlsv13:
135 | opensslOptions |= Int(SSL_OP_NO_TLSv1_2)
| `- error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
136 | fallthrough
137 | case .tlsv12:
/usr/include/openssl/ssl.h:420:10: note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
| `- note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:138:35: error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
136 | fallthrough
137 | case .tlsv12:
138 | opensslOptions |= Int(SSL_OP_NO_TLSv1_1)
| `- error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
139 | fallthrough
140 | case .tlsv11:
/usr/include/openssl/ssl.h:421:10: note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
| `- note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
423 | # define SSL_OP_NO_DTLSv1 SSL_OP_BIT(26)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:141:35: error: cannot find 'SSL_OP_NO_TLSv1' in scope
139 | fallthrough
140 | case .tlsv11:
141 | opensslOptions |= Int(SSL_OP_NO_TLSv1)
| `- error: cannot find 'SSL_OP_NO_TLSv1' in scope
142 | fallthrough
143 | case .tlsv1:
/usr/include/openssl/ssl.h:419:10: note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
| `- note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:144:35: error: cannot find 'SSL_OP_NO_SSLv3' in scope
142 | fallthrough
143 | case .tlsv1:
144 | opensslOptions |= Int(SSL_OP_NO_SSLv3)
| `- error: cannot find 'SSL_OP_NO_SSLv3' in scope
145 | fallthrough
146 | case .sslv3:
/usr/include/openssl/ssl.h:418:10: note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
416 | */
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
| `- note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:155:35: error: cannot find 'SSL_OP_NO_SSLv3' in scope
153 | switch configuration.maximumTLSVersion {
154 | case .some(.sslv2):
155 | opensslOptions |= Int(SSL_OP_NO_SSLv3)
| `- error: cannot find 'SSL_OP_NO_SSLv3' in scope
156 | fallthrough
157 | case .some(.sslv3):
/usr/include/openssl/ssl.h:418:10: note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
416 | */
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
| `- note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:158:35: error: cannot find 'SSL_OP_NO_TLSv1' in scope
156 | fallthrough
157 | case .some(.sslv3):
158 | opensslOptions |= Int(SSL_OP_NO_TLSv1)
| `- error: cannot find 'SSL_OP_NO_TLSv1' in scope
159 | fallthrough
160 | case .some(.tlsv1):
/usr/include/openssl/ssl.h:419:10: note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
| `- note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:161:35: error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
159 | fallthrough
160 | case .some(.tlsv1):
161 | opensslOptions |= Int(SSL_OP_NO_TLSv1_1)
| `- error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
162 | fallthrough
163 | case .some(.tlsv11):
/usr/include/openssl/ssl.h:421:10: note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
| `- note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
423 | # define SSL_OP_NO_DTLSv1 SSL_OP_BIT(26)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:164:35: error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
162 | fallthrough
163 | case .some(.tlsv11):
164 | opensslOptions |= Int(SSL_OP_NO_TLSv1_2)
| `- error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
165 | fallthrough
166 | case .some(.tlsv12):
/usr/include/openssl/ssl.h:420:10: note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
| `- note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:167:35: error: cannot find 'CNIOOpenSSL_SSL_OP_NO_TLSv1_3' in scope
165 | fallthrough
166 | case .some(.tlsv12):
167 | opensslOptions |= Int(CNIOOpenSSL_SSL_OP_NO_TLSv1_3)
| `- error: cannot find 'CNIOOpenSSL_SSL_OP_NO_TLSv1_3' in scope
168 | case .some(.tlsv13), .none:
169 | break
[312/329] Emitting module NIOOpenSSL
[313/329] Emitting module Core
[314/329] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[315/329] Compiling NIOWebSocket WebSocketUpgrader.swift
[316/329] Compiling NIOWebSocket WebSocketFrameDecoder.swift
[317/329] Compiling NIOOpenSSL SSLVerificationCallbacks.swift
[318/329] Compiling NIOOpenSSL TLSConfiguration.swift
[319/329] Emitting module NIOWebSocket
[320/329] Compiling NIOWebSocket WebSocketErrorCodes.swift
[321/329] Compiling NIOWebSocket WebSocketFrame.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
warning: 'swift-nio-ssl-support': ignoring declared target(s) 'swift-nio-ssl-support' in the system package
warning: 'swift-nio-zlib-support': ignoring declared target(s) 'swift-nio-zlib-support' in the system package
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/15] Emitting module COperatingSystem
[3/15] Compiling COperatingSystem libc.swift
[5/70] Compiling Debugging SourceLocation.swift
[6/70] Compiling SwiftMarkdown SwiftMarkdown.swift
[7/70] Compiling Debugging Demangler.swift
[8/70] Compiling NIOConcurrencyHelpers lock.swift
[9/70] Emitting module SwiftMarkdown
[10/71] Compiling NIOPriorityQueue PriorityQueue.swift
[12/71] Emitting module NIOConcurrencyHelpers
[13/71] Compiling NIOConcurrencyHelpers atomics.swift
[14/72] Emitting module Debugging
[15/72] Compiling Debugging Debuggable.swift
[16/73] Emitting module NIOPriorityQueue
[17/73] Compiling NIOPriorityQueue Heap.swift
[21/124] Compiling NIO ServerSocket.swift
[22/124] Compiling NIO Socket.swift
[23/124] Compiling NIO SocketAddresses.swift
[24/124] Compiling SwiftSoup TokenQueue.swift
[25/124] Compiling SwiftSoup Tokeniser.swift
[26/124] Compiling SwiftSoup TokeniserState.swift
[27/124] Compiling SwiftSoup TreeBuilder.swift
[28/131] Emitting module SwiftSoup
[29/131] Compiling NIO ContiguousCollection.swift
[30/131] Compiling NIO DeadChannel.swift
[31/131] Compiling NIO Embedded.swift
[32/131] Compiling NIO MarkedCircularBuffer.swift
[33/131] Compiling NIO MulticastChannel.swift
[34/131] Compiling NIO NIOAny.swift
[35/131] Compiling NIO NonBlockingFileIO.swift
[36/131] Compiling NIO PendingDatagramWritesManager.swift
[37/131] Compiling NIO PendingWritesManager.swift
[38/131] Compiling NIO PriorityQueue.swift
[39/131] Compiling NIO RecvByteBufferAllocator.swift
[40/131] Compiling NIO Resolver.swift
[41/131] Compiling NIO Selectable.swift
[42/131] Compiling NIO Selector.swift
[43/131] Compiling NIO Heap.swift
[44/131] Compiling NIO IO.swift
[45/131] Compiling NIO IOData.swift
[46/131] Compiling NIO IntegerTypes.swift
[47/131] Compiling NIO Interfaces.swift
[48/131] Compiling NIO Linux.swift
[49/131] Compiling NIO LinuxCPUSet.swift
[50/137] Emitting module NIO
[51/137] Compiling NIO ByteBuffer-int.swift
[52/137] Compiling NIO ByteBuffer-views.swift
[53/137] Compiling NIO Channel.swift
[54/137] Compiling NIO ChannelHandler.swift
[55/137] Compiling NIO ChannelHandlers.swift
[56/137] Compiling NIO ChannelInvoker.swift
[57/137] Compiling NIO ChannelOption.swift
[58/137] Compiling NIO EventLoop.swift
[59/137] Compiling NIO EventLoopFuture.swift
[60/137] Compiling NIO FileDescriptor.swift
[61/137] Compiling NIO FileHandle.swift
[62/137] Compiling NIO FileRegion.swift
[63/137] Compiling NIO GetaddrinfoResolver.swift
[64/137] Compiling NIO HappyEyeballs.swift
[65/137] Compiling NIO ChannelPipeline.swift
[66/137] Compiling NIO CircularBuffer.swift
[67/137] Compiling NIO Codec.swift
[68/137] Compiling NIO CompositeError.swift
[110/137] Compiling NIO AddressedEnvelope.swift
[111/137] Compiling NIO BaseSocket.swift
[112/137] Compiling NIO BaseSocketChannel.swift
[113/137] Compiling NIO BlockingIOThreadPool.swift
[114/137] Compiling NIO Bootstrap.swift
[115/137] Compiling NIO ByteBuffer-aux.swift
[116/137] Compiling NIO ByteBuffer-core.swift
[118/137] Compiling NIO TypeAssistedChannelHandler.swift
[119/137] Compiling NIO Utilities.swift
[120/137] Compiling SwiftSoup UnicodeScalar.swift
[121/137] Compiling SwiftSoup Validate.swift
[122/137] Compiling SwiftSoup Whitelist.swift
[123/137] Compiling SwiftSoup XmlDeclaration.swift
[124/137] Compiling SwiftSoup XmlTreeBuilder.swift
[133/138] Compiling NIO SocketChannel.swift
[134/138] Compiling NIO SocketOptionProvider.swift
[135/138] Compiling NIO System.swift
[136/138] Compiling NIO Thread.swift
[140/181] Compiling Async FutureType.swift
[141/181] Compiling Async QueueHandler.swift
[142/182] Compiling Async Future+Variadic.swift
[143/182] Compiling Async Future+Void.swift
[144/182] Compiling Bits Data+Strings.swift
[145/183] Emitting module Async
[146/183] Emitting module NIOTLS
[147/183] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[148/183] Compiling NIOHTTP1 ByteCollectionUtils.swift
[149/183] Compiling NIOHTTP1 HTTPDecoder.swift
[150/183] Compiling Bits Bytes.swift
[151/183] Compiling Bits Data+Bytes.swift
[154/183] Compiling Bits Deprecated.swift
[155/183] Compiling NIOTLS TLSEvents.swift
[158/183] Compiling Async Future+Flatten.swift
[159/183] Compiling Async Future+Global.swift
[160/183] Emitting module Bits
[161/183] Compiling Async Async+NIO.swift
[162/183] Compiling Async AsyncError.swift
[163/184] Emitting module NIOFoundationCompat
[164/184] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[165/185] Compiling Async Worker.swift
[168/185] Compiling Async Exports.swift
[169/185] Compiling Async Future+DoCatch.swift
[170/185] Compiling Async Collection+Future.swift
[171/185] Compiling Async Deprecated.swift
[176/186] Compiling NIOTLS SNIHandler.swift
[179/187] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[180/187] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[181/187] Compiling NIOHTTP1 HTTPResponseCompressor.swift
[182/192] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[183/192] Compiling NIOHTTP1 HTTPTypes.swift
[184/193] Compiling NIOHTTP1 HTTPEncoder.swift
[185/193] Compiling NIOHTTP1 HTTPUpgradeHandler.swift
[186/193] Compiling Random RandomProtocol.swift
[189/193] Emitting module NIOHTTP1
[191/233] Compiling Random URandom.swift
[192/233] Compiling Random OSRandom.swift
[193/233] Compiling Random Array+Random.swift
[194/233] Emitting module Random
[196/239] Compiling Core Future+Unwrap.swift
[197/239] Compiling Core FutureEncoder.swift
[198/239] Compiling Core HeaderValue.swift
[199/239] Compiling NIOWebSocket Base64.swift
[200/239] Compiling NIOWebSocket SHA1.swift
[201/239] Compiling Core Data+Base64URL.swift
[202/246] Emitting module NIOOpenSSL
[203/248] Compiling Core NotFound.swift
[204/248] Compiling Core OptionalType.swift
[205/248] Compiling Core Process+Execute.swift
[206/248] Compiling NIOWebSocket WebSocketProtocolErrorHandler.swift
[207/249] Compiling NIOWebSocket WebSocketOpcode.swift
[208/249] Compiling Core Data+Hex.swift
[209/249] Compiling Core DataCoders.swift
[212/249] Compiling Core Exports.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLConnection.swift:308:29: error: cannot find 'SSL_get_peer_certificate' in scope
306 | /// if available.
307 | func getPeerCertificate() -> OpenSSLCertificate? {
308 | guard let certPtr = SSL_get_peer_certificate(.make(optional: ssl)) else {
| `- error: cannot find 'SSL_get_peer_certificate' in scope
309 | return nil
310 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLConnection.swift:308:55: error: cannot infer contextual base in reference to member 'make'
306 | /// if available.
307 | func getPeerCertificate() -> OpenSSLCertificate? {
308 | guard let certPtr = SSL_get_peer_certificate(.make(optional: ssl)) else {
| `- error: cannot infer contextual base in reference to member 'make'
309 | return nil
310 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:130:34: error: cannot find 'SSL_OP_NO_COMPRESSION' in scope
128 | CNIOOpenSSL_SSL_CTX_set_mode(ctx, Int(SSL_MODE_RELEASE_BUFFERS | SSL_MODE_AUTO_RETRY))
129 |
130 | var opensslOptions = Int(SSL_OP_NO_COMPRESSION)
| `- error: cannot find 'SSL_OP_NO_COMPRESSION' in scope
131 |
132 | // Handle TLS versions
/usr/include/openssl/ssl.h:387:10: note: macro 'SSL_OP_NO_COMPRESSION' unavailable: structure not supported
385 | # define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION SSL_OP_BIT(16)
386 | /* Don't use compression even if supported */
387 | # define SSL_OP_NO_COMPRESSION SSL_OP_BIT(17)
| `- note: macro 'SSL_OP_NO_COMPRESSION' unavailable: structure not supported
388 | /* Permit unsafe legacy renegotiation */
389 | # define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION SSL_OP_BIT(18)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:135:35: error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
133 | switch configuration.minimumTLSVersion {
134 | case .tlsv13:
135 | opensslOptions |= Int(SSL_OP_NO_TLSv1_2)
| `- error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
136 | fallthrough
137 | case .tlsv12:
/usr/include/openssl/ssl.h:420:10: note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
| `- note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:138:35: error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
136 | fallthrough
137 | case .tlsv12:
138 | opensslOptions |= Int(SSL_OP_NO_TLSv1_1)
| `- error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
139 | fallthrough
140 | case .tlsv11:
/usr/include/openssl/ssl.h:421:10: note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
| `- note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
423 | # define SSL_OP_NO_DTLSv1 SSL_OP_BIT(26)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:141:35: error: cannot find 'SSL_OP_NO_TLSv1' in scope
139 | fallthrough
140 | case .tlsv11:
141 | opensslOptions |= Int(SSL_OP_NO_TLSv1)
| `- error: cannot find 'SSL_OP_NO_TLSv1' in scope
142 | fallthrough
143 | case .tlsv1:
/usr/include/openssl/ssl.h:419:10: note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
| `- note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:144:35: error: cannot find 'SSL_OP_NO_SSLv3' in scope
142 | fallthrough
143 | case .tlsv1:
144 | opensslOptions |= Int(SSL_OP_NO_SSLv3)
| `- error: cannot find 'SSL_OP_NO_SSLv3' in scope
145 | fallthrough
146 | case .sslv3:
/usr/include/openssl/ssl.h:418:10: note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
416 | */
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
| `- note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:155:35: error: cannot find 'SSL_OP_NO_SSLv3' in scope
153 | switch configuration.maximumTLSVersion {
154 | case .some(.sslv2):
155 | opensslOptions |= Int(SSL_OP_NO_SSLv3)
| `- error: cannot find 'SSL_OP_NO_SSLv3' in scope
156 | fallthrough
157 | case .some(.sslv3):
/usr/include/openssl/ssl.h:418:10: note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
416 | */
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
| `- note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:158:35: error: cannot find 'SSL_OP_NO_TLSv1' in scope
156 | fallthrough
157 | case .some(.sslv3):
158 | opensslOptions |= Int(SSL_OP_NO_TLSv1)
| `- error: cannot find 'SSL_OP_NO_TLSv1' in scope
159 | fallthrough
160 | case .some(.tlsv1):
/usr/include/openssl/ssl.h:419:10: note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
| `- note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:161:35: error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
159 | fallthrough
160 | case .some(.tlsv1):
161 | opensslOptions |= Int(SSL_OP_NO_TLSv1_1)
| `- error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
162 | fallthrough
163 | case .some(.tlsv11):
/usr/include/openssl/ssl.h:421:10: note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
| `- note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
423 | # define SSL_OP_NO_DTLSv1 SSL_OP_BIT(26)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:164:35: error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
162 | fallthrough
163 | case .some(.tlsv11):
164 | opensslOptions |= Int(SSL_OP_NO_TLSv1_2)
| `- error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
165 | fallthrough
166 | case .some(.tlsv12):
/usr/include/openssl/ssl.h:420:10: note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
| `- note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:167:35: error: cannot find 'CNIOOpenSSL_SSL_OP_NO_TLSv1_3' in scope
165 | fallthrough
166 | case .some(.tlsv12):
167 | opensslOptions |= Int(CNIOOpenSSL_SSL_OP_NO_TLSv1_3)
| `- error: cannot find 'CNIOOpenSSL_SSL_OP_NO_TLSv1_3' in scope
168 | case .some(.tlsv13), .none:
169 | break
[213/249] Compiling Core File.swift
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLConnection.swift:308:29: error: cannot find 'SSL_get_peer_certificate' in scope
306 | /// if available.
307 | func getPeerCertificate() -> OpenSSLCertificate? {
308 | guard let certPtr = SSL_get_peer_certificate(.make(optional: ssl)) else {
| `- error: cannot find 'SSL_get_peer_certificate' in scope
309 | return nil
310 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLConnection.swift:308:55: error: cannot infer contextual base in reference to member 'make'
306 | /// if available.
307 | func getPeerCertificate() -> OpenSSLCertificate? {
308 | guard let certPtr = SSL_get_peer_certificate(.make(optional: ssl)) else {
| `- error: cannot infer contextual base in reference to member 'make'
309 | return nil
310 | }
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:130:34: error: cannot find 'SSL_OP_NO_COMPRESSION' in scope
128 | CNIOOpenSSL_SSL_CTX_set_mode(ctx, Int(SSL_MODE_RELEASE_BUFFERS | SSL_MODE_AUTO_RETRY))
129 |
130 | var opensslOptions = Int(SSL_OP_NO_COMPRESSION)
| `- error: cannot find 'SSL_OP_NO_COMPRESSION' in scope
131 |
132 | // Handle TLS versions
/usr/include/openssl/ssl.h:387:10: note: macro 'SSL_OP_NO_COMPRESSION' unavailable: structure not supported
385 | # define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION SSL_OP_BIT(16)
386 | /* Don't use compression even if supported */
387 | # define SSL_OP_NO_COMPRESSION SSL_OP_BIT(17)
| `- note: macro 'SSL_OP_NO_COMPRESSION' unavailable: structure not supported
388 | /* Permit unsafe legacy renegotiation */
389 | # define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION SSL_OP_BIT(18)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:135:35: error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
133 | switch configuration.minimumTLSVersion {
134 | case .tlsv13:
135 | opensslOptions |= Int(SSL_OP_NO_TLSv1_2)
| `- error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
136 | fallthrough
137 | case .tlsv12:
/usr/include/openssl/ssl.h:420:10: note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
| `- note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:138:35: error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
136 | fallthrough
137 | case .tlsv12:
138 | opensslOptions |= Int(SSL_OP_NO_TLSv1_1)
| `- error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
139 | fallthrough
140 | case .tlsv11:
/usr/include/openssl/ssl.h:421:10: note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
| `- note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
423 | # define SSL_OP_NO_DTLSv1 SSL_OP_BIT(26)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:141:35: error: cannot find 'SSL_OP_NO_TLSv1' in scope
139 | fallthrough
140 | case .tlsv11:
141 | opensslOptions |= Int(SSL_OP_NO_TLSv1)
| `- error: cannot find 'SSL_OP_NO_TLSv1' in scope
142 | fallthrough
143 | case .tlsv1:
/usr/include/openssl/ssl.h:419:10: note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
| `- note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:144:35: error: cannot find 'SSL_OP_NO_SSLv3' in scope
142 | fallthrough
143 | case .tlsv1:
144 | opensslOptions |= Int(SSL_OP_NO_SSLv3)
| `- error: cannot find 'SSL_OP_NO_SSLv3' in scope
145 | fallthrough
146 | case .sslv3:
/usr/include/openssl/ssl.h:418:10: note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
416 | */
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
| `- note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:155:35: error: cannot find 'SSL_OP_NO_SSLv3' in scope
153 | switch configuration.maximumTLSVersion {
154 | case .some(.sslv2):
155 | opensslOptions |= Int(SSL_OP_NO_SSLv3)
| `- error: cannot find 'SSL_OP_NO_SSLv3' in scope
156 | fallthrough
157 | case .some(.sslv3):
/usr/include/openssl/ssl.h:418:10: note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
416 | */
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
| `- note: macro 'SSL_OP_NO_SSLv3' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:158:35: error: cannot find 'SSL_OP_NO_TLSv1' in scope
156 | fallthrough
157 | case .some(.sslv3):
158 | opensslOptions |= Int(SSL_OP_NO_TLSv1)
| `- error: cannot find 'SSL_OP_NO_TLSv1' in scope
159 | fallthrough
160 | case .some(.tlsv1):
/usr/include/openssl/ssl.h:419:10: note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
417 | # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
| `- note: macro 'SSL_OP_NO_TLSv1' unavailable: structure not supported
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:161:35: error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
159 | fallthrough
160 | case .some(.tlsv1):
161 | opensslOptions |= Int(SSL_OP_NO_TLSv1_1)
| `- error: cannot find 'SSL_OP_NO_TLSv1_1' in scope
162 | fallthrough
163 | case .some(.tlsv11):
/usr/include/openssl/ssl.h:421:10: note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
| `- note: macro 'SSL_OP_NO_TLSv1_1' unavailable: structure not supported
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
423 | # define SSL_OP_NO_DTLSv1 SSL_OP_BIT(26)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:164:35: error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
162 | fallthrough
163 | case .some(.tlsv11):
164 | opensslOptions |= Int(SSL_OP_NO_TLSv1_2)
| `- error: cannot find 'SSL_OP_NO_TLSv1_2' in scope
165 | fallthrough
166 | case .some(.tlsv12):
/usr/include/openssl/ssl.h:420:10: note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
418 | # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
419 | # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
420 | # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
| `- note: macro 'SSL_OP_NO_TLSv1_2' unavailable: structure not supported
421 | # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
422 | # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL/SSLContext.swift:167:35: error: cannot find 'CNIOOpenSSL_SSL_OP_NO_TLSv1_3' in scope
165 | fallthrough
166 | case .some(.tlsv12):
167 | opensslOptions |= Int(CNIOOpenSSL_SSL_OP_NO_TLSv1_3)
| `- error: cannot find 'CNIOOpenSSL_SSL_OP_NO_TLSv1_3' in scope
168 | case .some(.tlsv13), .none:
169 | break
[214/249] Compiling Core Deprecated.swift
[215/249] Compiling Core DirectoryConfig.swift
[216/249] Compiling Core BasicKey.swift
[217/249] Compiling Core CaseInsensitiveString.swift
[218/249] Compiling Core Decodable+Reflectable.swift
[219/249] Compiling Core ReflectionDecodable.swift
[229/249] Compiling NIOWebSocket WebSocketErrorCodes.swift
[230/249] Compiling NIOWebSocket WebSocketFrameEncoder.swift
[231/249] Compiling Core Reflectable.swift
[232/249] Compiling Core String+Utilities.swift
[233/249] Compiling Core Thread+Async.swift
[234/249] Emitting module NIOWebSocket
[235/249] Compiling NIOOpenSSL SSLVerificationCallbacks.swift
[236/249] Compiling NIOOpenSSL TLSConfiguration.swift
[239/249] Compiling NIOWebSocket WebSocketUpgrader.swift
[244/249] Compiling NIOWebSocket WebSocketFrame.swift
[245/249] Compiling NIOWebSocket WebSocketFrameDecoder.swift
BUILD FAILURE 6.1 linux