Build Information
Failed to build swift-hls-kit, reference main (0547f8), with Swift 6.3 for Wasm on 19 Apr 2026 04:07:01 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/atelier-socle/swift-hls-kit.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/atelier-socle/swift-hls-kit
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 0547f84 docs: version bump 0.6.0, DocC HEVC/audio sync, README refresh
Cloned https://github.com/atelier-socle/swift-hls-kit.git
Revision (git rev-parse @):
0547f84380f771d6a9927efe7e41708811437b15
SUCCESS checkout https://github.com/atelier-socle/swift-hls-kit.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/atelier-socle/swift-hls-kit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Fetching https://github.com/swiftlang/swift-docc-plugin
Fetching https://github.com/apple/swift-argument-parser.git
[1/2277] Fetching swift-docc-plugin
[229/19806] Fetching swift-docc-plugin, swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.37s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.38s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.7.1 (2.02s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (3.48s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.56s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.21s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.7.1
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
[3/3] Compiling plugin Swift-DocC Preview
[4/4] Compiling plugin Swift-DocC
Building for debugging...
[4/17] Write sources
[9/17] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/195] Emitting module HLSKit
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
[12/219] Emitting module ArgumentParserToolInfo
[13/219] Compiling ArgumentParserToolInfo ToolInfo.swift
[14/220] Wrapping AST for ArgumentParserToolInfo for debugging
[16/266] Compiling HLSKit SampleLocatorAudioAlignment.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[17/266] Compiling HLSKit SampleTable.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[18/266] Compiling HLSKit SampleTableParser.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[19/266] Compiling HLSKit DRMInterop.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[20/266] Compiling HLSKit FairPlayLiveConfig.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[21/266] Compiling HLSKit KeyRotationPolicy.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[22/266] Compiling HLSKit LiveDRMPipeline.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[23/266] Compiling HLSKit LiveDRMPipelineConfig.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[24/266] Compiling HLSKit LiveKeyManager.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[25/266] Compiling HLSKit SessionKeyManager.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[26/266] Compiling HLSKit ADTSParser.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[27/266] Compiling HLSKit AudioConverterBridge.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[28/266] Compiling HLSKit AudioEncoder.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[29/266] Compiling HLSKit EncodedFrame.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[30/266] Compiling HLSKit FFmpegAudioEncoder.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[31/266] Compiling HLSKit FFmpegVideoEncoder.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[32/266] Compiling HLSKit LiveEncoder.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[33/266] Compiling HLSKit LiveEncoderConfiguration.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[34/266] Compiling HLSKit LiveEncoderError.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[35/266] Compiling HLSKit MultiBitrateEncoder.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[36/266] Compiling HLSKit NALUnitParser.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[37/266] Compiling HLSKit VideoEncoder+PixelBuffer.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[38/266] Compiling HLSKit VideoEncoder.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[39/266] Compiling HLSKit CryptoProvider.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[40/266] Compiling HLSKit EncryptedPlaylistBuilder.swift
/host/spi-builder-workspace/Sources/HLSKit/Encryption/CryptoProvider.swift:76:1: error: missing return in global function expected to return 'any CryptoProvider'
74 | return OpenSSLCryptoProvider()
75 | #endif
76 | }
| `- error: missing return in global function expected to return 'any CryptoProvider'
77 |
78 | // MARK: - Apple Implementation
[41/290] Compiling HLSKit MediaSourceConfiguration.swift
[42/290] Compiling HLSKit RawMediaBuffer.swift
[43/290] Compiling HLSKit LivePipeline.swift
[44/290] Compiling HLSKit LivePipelineComponents.swift
[45/290] Compiling HLSKit LivePipelineConfiguration.swift
[46/290] Compiling HLSKit LivePipelineOrchestration.swift
[47/290] Compiling HLSKit LivePipelinePresets.swift
[48/290] Compiling HLSKit LivePipelinePresetsExtended.swift
[49/290] Compiling HLSKit LivePipelineProPresets.swift
[50/290] Compiling HLSKit LivePipelineState.swift
[51/290] Compiling HLSKit LivePipelineStatistics.swift
[52/290] Compiling HLSKit LivePipelineTransportMonitor.swift
[53/290] Compiling HLSKit DVRBuffer.swift
[54/290] Compiling HLSKit DVRPlaylist.swift
[55/290] Compiling HLSKit DVRPlaylistConfiguration.swift
[56/290] Compiling HLSKit EventPlaylist.swift
[57/290] Compiling HLSKit EventPlaylistConfiguration.swift
[58/290] Compiling HLSKit LivePlaylistError.swift
[59/290] Compiling HLSKit LivePlaylistEvent.swift
[60/290] Compiling HLSKit LivePlaylistManager.swift
[61/290] Compiling HLSKit LivePlaylistMetadata.swift
[62/290] Compiling HLSKit MediaSequenceTracker.swift
[63/290] Compiling HLSKit PlaylistRenderer.swift
[64/290] Compiling HLSKit SlidingWindowConfiguration.swift
[65/290] Compiling HLSKit SlidingWindowPlaylist.swift
[66/314] Compiling HLSKit SRTPusher.swift
[67/314] Compiling HLSKit SRTPusherConfiguration.swift
[68/314] Compiling HLSKit SRTTransport.swift
[69/314] Compiling HLSKit SegmentPusher.swift
[70/314] Compiling HLSKit TransportAwarePipelinePolicy.swift
[71/314] Compiling HLSKit TransportAwarePusher.swift
[72/314] Compiling HLSKit TransportBitrateRecommendation.swift
[73/314] Compiling HLSKit TransportEvent.swift
[74/314] Compiling HLSKit TransportHealthDashboard.swift
[75/314] Compiling HLSKit TransportQuality.swift
[76/314] Compiling HLSKit TransportRecordingState.swift
[77/314] Compiling HLSKit TransportStatisticsSnapshot.swift
[78/314] Compiling HLSKit AutoChapterGenerator.swift
[79/314] Compiling HLSKit LiveToVODConverter.swift
[80/314] Compiling HLSKit RecordingStorage.swift
[81/314] Compiling HLSKit SimultaneousRecorder.swift
[82/314] Compiling HLSKit ContentSteeringConfig.swift
[83/314] Compiling HLSKit FailoverManager.swift
[84/314] Compiling HLSKit GapHandler.swift
[85/314] Compiling HLSKit RedundantStreamConfig.swift
[86/314] Compiling HLSKit SessionDataConfig.swift
[87/314] Compiling HLSKit MP4Segmenter.swift
[88/314] Compiling HLSKit MP4SegmenterHelpers.swift
[89/314] Compiling HLSKit MP4SegmenterPlaylist.swift
[90/338] Compiling ArgumentParser CommandParser.swift
[91/338] Compiling ArgumentParser InputKey.swift
[92/338] Compiling ArgumentParser InputOrigin.swift
[93/338] Compiling ArgumentParser Name.swift
[94/338] Compiling ArgumentParser Parsed.swift
[95/338] Compiling ArgumentParser ParsedValues.swift
[96/338] Compiling ArgumentParser ParserError.swift
[97/338] Compiling ArgumentParser SplitArguments.swift
[98/338] Compiling ArgumentParser DumpHelpGenerator.swift
[99/338] Compiling ArgumentParser HelpCommand.swift
[100/338] Compiling ArgumentParser HelpGenerator.swift
[101/338] Compiling ArgumentParser MessageInfo.swift
[102/338] Compiling ArgumentParser UsageGenerator.swift
[103/338] Compiling ArgumentParser CollectionExtensions.swift
[104/338] Compiling ArgumentParser Foundation.swift
[105/338] Compiling ArgumentParser Mutex.swift
[106/338] Compiling ArgumentParser Platform.swift
[107/338] Compiling ArgumentParser SequenceExtensions.swift
[108/338] Compiling ArgumentParser StringExtensions.swift
[109/338] Compiling ArgumentParser SwiftExtensions.swift
[110/338] Compiling HLSKit AudioFormat.swift
[111/338] Compiling HLSKit FileSource.swift
[112/338] Compiling HLSKit InputError.swift
[113/338] Compiling HLSKit MediaFormatDescription.swift
[114/338] Compiling HLSKit MediaSource.swift
[115/338] Compiling HLSKit IMSC1Segmenter.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[116/338] Compiling HLSKit IMSC1SegmenterBoxes.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[117/338] Compiling HLSKit IMSC1Style.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[118/338] Compiling HLSKit AppleTranscoder.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[119/338] Compiling HLSKit AppleTranscoderFastPath.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[120/338] Compiling HLSKit AppleTranscoderHelpers.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[121/338] Compiling HLSKit AppleTranscoderSetup.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[122/338] Compiling HLSKit EncodingSettings.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[123/338] Compiling HLSKit FFmpegCommandBuilder.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[124/338] Compiling HLSKit FFmpegProcessRunner.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[125/338] Compiling HLSKit FFmpegSourceAnalyzer.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[126/338] Compiling HLSKit FFmpegTranscoder.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[127/338] Compiling HLSKit HTTPClient.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[128/338] Compiling HLSKit ManagedTranscoder.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[129/338] Compiling HLSKit ManagedTranscodingConfig.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[130/338] Compiling HLSKit ManagedTranscodingJob.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[131/338] Compiling HLSKit ManagedTranscodingProvider.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[132/338] Compiling HLSKit AWSJobSettingsBuilder.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[133/338] Compiling HLSKit AWSMediaConvertHelpers.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[134/338] Compiling HLSKit AWSMediaConvertProvider.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[135/338] Compiling HLSKit AWSSignatureV4.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[136/338] Compiling HLSKit CloudflareStreamProvider.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[137/338] Compiling HLSKit MuxProvider.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[138/338] Compiling HLSKit QualityPreset.swift
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
277 |
278 | init(session: URLSession = .shared) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:19: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
279 | self.session = session
280 | }
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:278:33: error: value of type '_' expected to be instance of class or class-constrained type
276 | private let session: URLSession
277 |
278 | init(session: URLSession = .shared) {
| `- error: value of type '_' expected to be instance of class or class-constrained type
279 | self.session = session
280 | }
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:276:17: error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
274 | struct URLSessionHTTPClient: HTTPClient, Sendable {
275 |
276 | private let session: URLSession
| `- error: stored property 'session' of 'Sendable'-conforming struct 'URLSessionHTTPClient' has non-Sendable type 'AnyObject'
277 |
278 | init(session: URLSession = .shared) {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:288:23: error: cannot find 'URLRequest' in scope
286 | body: Data?
287 | ) async throws -> HTTPResponse {
288 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
289 | request.httpMethod = method
290 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:295:50: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
293 | request.httpBody = body
294 |
295 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
296 | for: request
297 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:329:23: error: cannot find 'URLRequest' in scope
327 | progress: (@Sendable (Double) -> Void)?
328 | ) async throws -> HTTPResponse {
329 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
330 | request.httpMethod = method
331 | for (key, value) in headers {
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:361:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
359 | request.httpBody = fileData
360 | progress?(0.5)
361 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
362 | for: request
363 | )
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:398:23: error: cannot find 'URLRequest' in scope
396 | progress: (@Sendable (Double) -> Void)?
397 | ) async throws {
398 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
399 | for (key, value) in headers {
400 | request.setValue(
/host/spi-builder-workspace/Sources/HLSKit/Transcoder/Managed/HTTPClient.swift:431:54: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
429 | #else
430 | progress?(0.5)
431 | let (data, response) = try await session.data(
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
432 | for: request
433 | )
[145/338] Compiling HLSKit SCTE35Marker.swift
[146/338] Compiling HLSKit AttributeParser.swift
[147/338] Compiling HLSKit ManifestParser.swift
[148/338] Compiling HLSKit ParserError.swift
[149/338] Compiling HLSKit TagParser.swift
[150/338] Compiling HLSKit TagParserLowLatency.swift
[151/338] Compiling HLSKit VariableSubstitution.swift
[152/338] Compiling HLSKit BandwidthMonitor.swift
[153/338] Compiling HLSKit HTTPPusher.swift
[154/338] Compiling HLSKit HTTPPusherConfiguration.swift
[155/341] Compiling HLSKit IcecastPusher.swift
[156/341] Compiling HLSKit IcecastPusherConfiguration.swift
[157/341] Compiling HLSKit IcecastStreamStatistics.swift
[158/341] Compiling HLSKit IcecastTransport.swift
[159/341] Compiling HLSKit MultiDestinationPusher.swift
[160/341] Compiling HLSKit PushConnectionState.swift
[161/341] Compiling HLSKit PushError.swift
[162/341] Compiling HLSKit PushRetryPolicy.swift
[163/341] Compiling HLSKit PushStats.swift
[164/341] Compiling HLSKit QualityAwareTransport.swift
[165/341] Compiling HLSKit RTMPPusher.swift
[166/341] Compiling HLSKit RTMPPusherConfiguration.swift
[167/341] Compiling HLSKit RTMPServerCapabilities.swift
[168/341] Compiling HLSKit RTMPTransport.swift
[169/341] Compiling HLSKit SRTConnectionQuality.swift
[170/341] Compiling HLSKit AudioSegmenter.swift
[171/341] Compiling HLSKit CMAFWriter.swift
[172/341] Compiling HLSKit CMAFWriterBoxes.swift
[173/341] Compiling HLSKit CMAFWriterCodecConfig.swift
[174/341] Compiling HLSKit CMAFWriterMoof.swift
[175/341] Compiling HLSKit CMAFWriterVideoMoov.swift
[176/341] Compiling HLSKit IncrementalSegmenter.swift
[177/341] Compiling HLSKit LiveSegment.swift
[178/341] Compiling HLSKit LiveSegmenter.swift
[179/341] Compiling HLSKit LiveSegmenterConfiguration.swift
[180/341] Compiling HLSKit LiveSegmenterError.swift
[181/341] Compiling HLSKit PartialSegment.swift
[182/341] Compiling HLSKit SegmentRingBuffer.swift
[183/341] Compiling HLSKit VideoSegmenter.swift
[184/341] Compiling HLSKit BlockingPlaylistHandler.swift
[185/341] Compiling HLSKit BlockingPlaylistRequest.swift
[186/341] Compiling HLSKit DeltaUpdateGenerator.swift
[187/341] Compiling HLSKit HLSSkipRequest.swift
[188/341] Compiling HLSKit LLHLSConfiguration.swift
[189/341] Compiling HLSKit LLHLSError.swift
[190/341] Compiling HLSKit LLHLSEvent.swift
[191/341] Compiling HLSKit LLHLSManager.swift
[192/341] Compiling HLSKit LLHLSPlaylistRenderer.swift
[193/341] Compiling HLSKit LLPartialSegment.swift
[194/341] Compiling HLSKit PartialSegmentManager.swift
[195/344] Compiling ArgumentParser ParentCommand.swift
[196/344] Compiling ArgumentParser AsyncParsableCommand.swift
[197/344] Compiling ArgumentParser CommandConfiguration.swift
[198/344] Compiling ArgumentParser CommandGroup.swift
[199/344] Compiling ArgumentParser EnumerableFlag.swift
[200/344] Compiling ArgumentParser ExpressibleByArgument.swift
[201/344] Compiling ArgumentParser ParsableArguments.swift
[202/344] Compiling ArgumentParser ArgumentVisibility.swift
[203/344] Compiling ArgumentParser CompletionKind.swift
[204/344] Compiling ArgumentParser Errors.swift
[205/344] Compiling ArgumentParser Flag.swift
[206/344] Compiling ArgumentParser NameSpecification.swift
[207/344] Compiling ArgumentParser Option.swift
[208/344] Compiling ArgumentParser OptionGroup.swift
[209/344] Compiling HLSKit ServerControlConfig.swift
[210/344] Compiling HLSKit ServerControlRenderer.swift
[211/344] Compiling HLSKit ContentSteering.swift
[212/344] Compiling HLSKit DateRange.swift
[213/344] Compiling HLSKit EncryptionMethod.swift
[214/344] Compiling HLSKit HLSTag.swift
[215/344] Compiling HLSKit HLSVersion.swift
[216/344] Compiling HLSKit MasterPlaylist.swift
[217/344] Compiling HLSKit MediaPlaylist.swift
[218/344] Compiling HLSKit MediaType.swift
[219/344] Compiling HLSKit PlaylistType.swift
[220/344] Compiling HLSKit RenditionGroup.swift
[221/344] Compiling HLSKit Resolution.swift
[222/344] Compiling HLSKit Segment.swift
[223/344] Compiling HLSKit SessionData.swift
[224/344] Compiling HLSKit SubtitleCodec.swift
[225/344] Compiling HLSKit SupplementalCodecs.swift
[226/344] Compiling HLSKit Variant.swift
[227/344] Compiling HLSKit VideoRange.swift
[228/344] Compiling HLSKit DateRangeManager.swift
[229/344] Compiling HLSKit HLSInterstitial.swift
[230/344] Compiling HLSKit ID3TimedMetadata.swift
[231/344] Compiling HLSKit InterstitialManager.swift
[232/344] Compiling HLSKit LiveMetadataInjector.swift
[233/344] Compiling HLSKit ProgramDateTimeSync.swift
[246/344] Compiling ArgumentParser Tree.swift
[247/344] Compiling ArgumentParser CodingKeyValidator.swift
[248/344] Compiling ArgumentParser NonsenseFlagsValidator.swift
[249/344] Compiling ArgumentParser ParsableArgumentsValidation.swift
[250/344] Compiling ArgumentParser PositionalArgumentsValidator.swift
[251/344] Compiling ArgumentParser UniqueNamesValidator.swift
[252/344] Compiling ArgumentParser BashCompletionsGenerator.swift
[253/344] Compiling ArgumentParser CompletionsGenerator.swift
[254/344] Compiling ArgumentParser FishCompletionsGenerator.swift
[255/344] Compiling ArgumentParser ZshCompletionsGenerator.swift
[256/344] Compiling ArgumentParser Argument.swift
[257/344] Compiling ArgumentParser ArgumentDiscussion.swift
[258/344] Compiling ArgumentParser ArgumentHelp.swift
[273/344] Compiling ArgumentParser ParsableCommand.swift
[274/344] Compiling ArgumentParser ArgumentDecoder.swift
[275/344] Compiling ArgumentParser ArgumentDefinition.swift
[276/344] Compiling ArgumentParser ArgumentSet.swift
[284/344] Emitting module ArgumentParser
[291/345] Wrapping AST for ArgumentParser for debugging
[293/345] Compiling HLSKit SegmentationConfig.swift
[294/345] Compiling HLSKit SegmentationResult.swift
[295/345] Compiling HLSKit TSSegmenter.swift
[296/345] Compiling HLSKit TSSegmenterCodecExtraction.swift
[297/345] Compiling HLSKit TSSegmenterPlaylist.swift
[298/345] Compiling HLSKit MVHEVCEncoder.swift
[299/345] Compiling HLSKit MVHEVCMediaSegmentBoxes.swift
[300/345] Compiling HLSKit MVHEVCPackager.swift
[301/345] Compiling HLSKit MVHEVCPackagerBoxes.swift
[302/345] Compiling HLSKit MVHEVCSampleProcessor.swift
[303/345] Compiling HLSKit SpatialVideoConfiguration.swift
[304/345] Compiling HLSKit VideoChannelLayout.swift
[305/345] Compiling HLSKit VideoLayoutDescriptor.swift
[306/345] Compiling HLSKit VideoProjection.swift
[307/345] Compiling HLSKit AC3Encoder.swift
[308/345] Compiling HLSKit DolbyAtmosEncoder.swift
[309/345] Compiling HLSKit HiResAudioConfig.swift
[310/345] Compiling HLSKit MultiChannelLayout.swift
[311/345] Compiling HLSKit SpatialAudioConfig.swift
[312/345] Compiling HLSKit SpatialAudioEncoder.swift
[313/345] Compiling HLSKit SpatialRenditionGenerator.swift
[314/345] Compiling HLSKit IMSC1Document.swift
[315/345] Compiling HLSKit IMSC1Parser.swift
[316/345] Compiling HLSKit IMSC1Renderer.swift
[317/345] Compiling HLSKit SourceAnalyzer.swift
[318/345] Compiling HLSKit TrackProcessing.swift
[319/345] Compiling HLSKit TranscodingConfig.swift
[320/345] Compiling HLSKit TranscodingError.swift
[321/345] Compiling HLSKit TranscodingProtocol.swift
[322/345] Compiling HLSKit TranscodingResult.swift
[323/345] Compiling HLSKit TranscodingSession.swift
[324/345] Compiling HLSKit VariantPlaylistBuilder.swift
[325/345] Compiling HLSKit VideoProfile.swift
[326/345] Compiling HLSKit ADTSConverter.swift
[327/345] Compiling HLSKit AnnexBConverter.swift
[328/345] Compiling HLSKit PESPacketizer.swift
[329/345] Compiling HLSKit ProgramTables.swift
[330/345] Compiling HLSKit TSPacket.swift
[331/345] Compiling HLSKit TSPacketWriter.swift
[332/345] Compiling HLSKit TSSegmentBuilder.swift
[333/345] Compiling HLSKit TransportError.swift
[334/345] Compiling HLSKit LockedState.swift
[335/345] Compiling HLSKit AppleHLSRules.swift
[336/345] Compiling HLSKit HLSValidator.swift
[337/345] Compiling HLSKit RFC8216MediaRules.swift
[338/345] Compiling HLSKit RFC8216Rules.swift
[339/345] Compiling HLSKit ValidationReport.swift
[340/345] Compiling HLSKit VariableRules.swift
BUILD FAILURE 6.3 wasm