The Swift Package Index logo.Swift Package Index

Build Information

Successful build of YoutubeEngine, reference 0.7.1 (f5a3c9), with Swift 6.2 for macOS (SPM) on 18 Jun 2025 10:34:36 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Igor-Palaguta/YoutubeEngine.git
Reference: 0.7.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Igor-Palaguta/YoutubeEngine
 * tag               0.7.1      -> FETCH_HEAD
HEAD is now at f5a3c96 Fix Swift Package Manager Tests
Cloned https://github.com/Igor-Palaguta/YoutubeEngine.git
Revision (git rev-parse @):
f5a3c96a122c02b7fd9b84dc5150fa480bb172b5
SUCCESS checkout https://github.com/Igor-Palaguta/YoutubeEngine.git at 0.7.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/Igor-Palaguta/YoutubeEngine.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-1EA4D86E10B52AF.txt
[4/49] Emitting module ReactiveSwift
[5/54] Compiling ReactiveSwift LazyMap.swift
[6/54] Compiling ReactiveSwift Map.swift
[7/54] Compiling ReactiveSwift MapError.swift
[8/54] Compiling ReactiveSwift Materialize.swift
[9/54] Compiling ReactiveSwift MaterializeAsResult.swift
[10/54] Compiling ReactiveSwift SkipFirst.swift
[11/54] Compiling ReactiveSwift SkipRepeats.swift
[12/54] Compiling ReactiveSwift SkipWhile.swift
[13/54] Compiling ReactiveSwift TakeFirst.swift
[14/54] Compiling ReactiveSwift TakeLast.swift
[15/54] Compiling ReactiveSwift AttemptMap.swift
[16/54] Compiling ReactiveSwift Collect.swift
[17/54] Compiling ReactiveSwift CollectEvery.swift
[18/54] Compiling ReactiveSwift CombinePrevious.swift
[19/54] Compiling ReactiveSwift CompactMap.swift
[20/54] Compiling ReactiveSwift Property.swift
[21/54] Compiling ReactiveSwift Reactive.swift
[22/54] Compiling ReactiveSwift ResultExtensions.swift
[23/54] Compiling ReactiveSwift Scheduler.swift
[24/54] Compiling ReactiveSwift Signal.Observer.swift
[25/54] Compiling ReactiveSwift TakeWhile.swift
[26/54] Compiling ReactiveSwift Throttle.swift
[27/54] Compiling ReactiveSwift UnaryAsyncOperator.swift
[28/54] Compiling ReactiveSwift UniqueValues.swift
[29/54] Compiling ReactiveSwift Optional.swift
[30/54] Compiling ReactiveSwift Debounce.swift
[31/54] Compiling ReactiveSwift Delay.swift
[32/54] Compiling ReactiveSwift Dematerialize.swift
[33/54] Compiling ReactiveSwift DematerializeResults.swift
[34/54] Compiling ReactiveSwift Filter.swift
[35/54] Compiling ReactiveSwift ObserveOn.swift
[36/54] Compiling ReactiveSwift Observer.swift
[37/54] Compiling ReactiveSwift Operators.swift
[38/54] Compiling ReactiveSwift Reduce.swift
[39/54] Compiling ReactiveSwift ScanMap.swift
[40/54] Compiling ReactiveSwift Action.swift
[41/54] Compiling ReactiveSwift Atomic.swift
[42/54] Compiling ReactiveSwift Bag.swift
[43/54] Compiling ReactiveSwift Deprecations+Removals.swift
[44/54] Compiling ReactiveSwift Disposable.swift
[45/54] Compiling ReactiveSwift Event.swift
[46/54] Compiling ReactiveSwift EventLogger.swift
[47/54] Compiling ReactiveSwift Flatten.swift
[48/54] Compiling ReactiveSwift FoundationExtensions.swift
[49/54] Compiling ReactiveSwift Lifetime.swift
[50/54] Compiling ReactiveSwift Signal.swift
[51/54] Compiling ReactiveSwift SignalProducer.swift
[52/54] Compiling ReactiveSwift UnidirectionalBinding.swift
[53/54] Compiling ReactiveSwift UninhabitedTypeGuards.swift
[54/54] Compiling ReactiveSwift ValidatingProperty.swift
[55/76] Emitting module YoutubeEngine
[56/78] Compiling YoutubeEngine Engine.swift
[57/78] Compiling YoutubeEngine Error.swift
[58/78] Compiling YoutubeEngine RequestParameterRepresenting.swift
[59/78] Compiling YoutubeEngine SearchRequest.swift
[60/78] Compiling YoutubeEngine PlaylistItemRequest.swift
[61/78] Compiling YoutubeEngine Request.swift
[62/78] Compiling YoutubeEngine NSURLSession+RAC.swift
/Users/admin/builder/spi-builder-workspace/Source/YoutubeEngine/Helpers/NSURLSession+RAC.swift:61:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
 59 |                     let error = error as NSError
 60 |                     if error.domain == NSURLErrorDomain && error.code == NSURLErrorCancelled {
 61 |                         observer.sendInterrupted()
    |                         `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 62 |                     } else {
 63 |                         observer.send(error: error)
/Users/admin/builder/spi-builder-workspace/Source/YoutubeEngine/Helpers/NSURLSession+RAC.swift:36:33: warning: capture of non-sendable type 'T.Type' in an isolated closure
 34 |                                           parameters: [String: String]?,
 35 |                                           logger: Logging?) -> SignalProducer<T, NSError> {
 36 |         return SignalProducer { observer, disposable in
    |                                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 37 |             guard let components = NSURLComponents(url: url, resolvingAgainstBaseURL: false) else {
 38 |                 observer.send(error: YoutubeEngineError.invalidURL as NSError)
[63/78] Compiling YoutubeEngine NSDateComponents+ISO8601.swift
/Users/admin/builder/spi-builder-workspace/Source/YoutubeEngine/Helpers/NSURLSession+RAC.swift:61:25: warning: capture of non-sendable type 'T.Type' in an isolated closure
 59 |                     let error = error as NSError
 60 |                     if error.domain == NSURLErrorDomain && error.code == NSURLErrorCancelled {
 61 |                         observer.sendInterrupted()
    |                         `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 62 |                     } else {
 63 |                         observer.send(error: error)
/Users/admin/builder/spi-builder-workspace/Source/YoutubeEngine/Helpers/NSURLSession+RAC.swift:36:33: warning: capture of non-sendable type 'T.Type' in an isolated closure
 34 |                                           parameters: [String: String]?,
 35 |                                           logger: Logging?) -> SignalProducer<T, NSError> {
 36 |         return SignalProducer { observer, disposable in
    |                                 `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 37 |             guard let components = NSURLComponents(url: url, resolvingAgainstBaseURL: false) else {
 38 |                 observer.send(error: YoutubeEngineError.invalidURL as NSError)
[64/78] Compiling YoutubeEngine ChannelRequest.swift
[65/78] Compiling YoutubeEngine PartibleObject.swift
[66/78] Compiling YoutubeEngine Part.swift
[67/78] Compiling YoutubeEngine Playlist.swift
[68/78] Compiling YoutubeEngine PlaylistItem.swift
[69/78] Compiling YoutubeEngine SearchItem.swift
[70/78] Compiling YoutubeEngine StatisticsNumber.swift
[71/78] Compiling YoutubeEngine Video.swift
[72/78] Compiling YoutubeEngine Video+Request.swift
[73/78] Compiling YoutubeEngine VideoRequest.swift
[74/78] Compiling YoutubeEngine NSDateFormatter+ISO8601.swift
[75/78] Compiling YoutubeEngine Channel+Request.swift
[76/78] Compiling YoutubeEngine Channel.swift
[77/78] Compiling YoutubeEngine Image.swift
[78/78] Compiling YoutubeEngine Page.swift
Build complete! (16.24s)
Fetching https://github.com/Quick/Nimble.git
Fetching https://github.com/ReactiveCocoa/ReactiveSwift.git
Fetching https://github.com/AliSoftware/OHHTTPStubs.git
[1/7900] Fetching ohhttpstubs
[870/60393] Fetching ohhttpstubs, reactiveswift
[1029/79977] Fetching ohhttpstubs, reactiveswift, nimble
Fetched https://github.com/ReactiveCocoa/ReactiveSwift.git from cache (2.41s)
Fetched https://github.com/Quick/Nimble.git from cache (2.41s)
Fetched https://github.com/AliSoftware/OHHTTPStubs.git from cache (2.41s)
Computing version for https://github.com/AliSoftware/OHHTTPStubs.git
Computed https://github.com/AliSoftware/OHHTTPStubs.git at 9.1.0 (2.93s)
Computing version for https://github.com/ReactiveCocoa/ReactiveSwift.git
Computed https://github.com/ReactiveCocoa/ReactiveSwift.git at 6.7.0 (0.47s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 8.1.2 (0.52s)
Creating working copy for https://github.com/AliSoftware/OHHTTPStubs.git
Working copy of https://github.com/AliSoftware/OHHTTPStubs.git resolved at 9.1.0
Creating working copy for https://github.com/ReactiveCocoa/ReactiveSwift.git
Working copy of https://github.com/ReactiveCocoa/ReactiveSwift.git resolved at 6.7.0
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 8.1.2
Build complete.
{
  "dependencies" : [
    {
      "identity" : "reactiveswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.0.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ReactiveCocoa/ReactiveSwift.git"
    },
    {
      "identity" : "nimble",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "8.0.0",
            "upper_bound" : "9.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    },
    {
      "identity" : "ohhttpstubs",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.0.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/AliSoftware/OHHTTPStubs.git"
    }
  ],
  "manifest_display_name" : "YoutubeEngine",
  "name" : "YoutubeEngine",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "YoutubeEngine",
      "targets" : [
        "YoutubeEngine"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "YoutubeEngineTests",
      "module_type" : "SwiftTarget",
      "name" : "YoutubeEngineTests",
      "path" : "Tests/YoutubeEngineTests",
      "product_dependencies" : [
        "Nimble",
        "OHHTTPStubsSwift"
      ],
      "sources" : [
        "DateComponents+EasyConstruction.swift",
        "EngineTests.swift",
        "ISO8601DurationTests.swift"
      ],
      "target_dependencies" : [
        "YoutubeEngine"
      ],
      "type" : "test"
    },
    {
      "c99name" : "YoutubeEngine",
      "module_type" : "SwiftTarget",
      "name" : "YoutubeEngine",
      "path" : "Source",
      "product_dependencies" : [
        "ReactiveSwift"
      ],
      "product_memberships" : [
        "YoutubeEngine"
      ],
      "sources" : [
        "YoutubeEngine/Data/Channel.swift",
        "YoutubeEngine/Data/Image.swift",
        "YoutubeEngine/Data/Page.swift",
        "YoutubeEngine/Data/Part.swift",
        "YoutubeEngine/Data/Playlist.swift",
        "YoutubeEngine/Data/PlaylistItem.swift",
        "YoutubeEngine/Data/SearchItem.swift",
        "YoutubeEngine/Data/StatisticsNumber.swift",
        "YoutubeEngine/Data/Video.swift",
        "YoutubeEngine/Engine.swift",
        "YoutubeEngine/Error.swift",
        "YoutubeEngine/Helpers/NSURLSession+RAC.swift",
        "YoutubeEngine/Parser/NSDateComponents+ISO8601.swift",
        "YoutubeEngine/Parser/NSDateFormatter+ISO8601.swift",
        "YoutubeEngine/Requests/Channel+Request.swift",
        "YoutubeEngine/Requests/ChannelRequest.swift",
        "YoutubeEngine/Requests/PartibleObject.swift",
        "YoutubeEngine/Requests/PlaylistItemRequest.swift",
        "YoutubeEngine/Requests/Request.swift",
        "YoutubeEngine/Requests/RequestParameterRepresenting.swift",
        "YoutubeEngine/Requests/SearchRequest.swift",
        "YoutubeEngine/Requests/Video+Request.swift",
        "YoutubeEngine/Requests/VideoRequest.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.