The Swift Package Index logo.Swift Package Index

Build Information

Successful build of NextLevelSessionExporter, reference 1.0.1 (b45267), with Swift 6.1 for macOS (SPM) on 13 Jan 2026 13:10:45 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/NextLevel/NextLevelSessionExporter.git
Reference: 1.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/NextLevel/NextLevelSessionExporter
 * tag               1.0.1      -> FETCH_HEAD
HEAD is now at b452672 updates
Cloned https://github.com/NextLevel/NextLevelSessionExporter.git
Revision (git rev-parse @):
b452672cbdc2387daabdb295f6657c37be75f990
SUCCESS checkout https://github.com/NextLevel/NextLevelSessionExporter.git at 1.0.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/NextLevel/NextLevelSessionExporter.git
https://github.com/NextLevel/NextLevelSessionExporter.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "NextLevelSessionExporter",
  "name" : "NextLevelSessionExporter",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "NextLevelSessionExporter",
      "targets" : [
        "SessionExporter"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "6"
  ],
  "targets" : [
    {
      "c99name" : "SessionExporter",
      "module_type" : "SwiftTarget",
      "name" : "SessionExporter",
      "path" : "Sources",
      "product_memberships" : [
        "NextLevelSessionExporter"
      ],
      "sources" : [
        "NextLevelSessionExporter.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
warning: 'spi-builder-workspace': /Users/admin/builder/spi-builder-workspace/Package.swift:28:15: warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
26 | import PackageDescription
27 |
28 | let package = Package(
   |               |- warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
   |               `- note: use 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)' instead
29 |     name: "NextLevelSessionExporter",
30 |     platforms: [
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/4] Compiling SessionExporter NextLevelSessionExporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/NextLevelSessionExporter.swift:323:62: warning: capture of 'videoOutput' with non-sendable type 'AVAssetReaderVideoCompositionOutput' in a '@Sendable' closure
321 |             dispatchGroup.enter()
322 |             videoInput.requestMediaDataWhenReady(on: self._inputQueue, using: {
323 |                 if self.encode(readySamplesFromReaderOutput: videoOutput, toWriterInput: videoInput) == false {
    |                                                              `- warning: capture of 'videoOutput' with non-sendable type 'AVAssetReaderVideoCompositionOutput' in a '@Sendable' closure
324 |                     dispatchGroup.leave()
325 |                 }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetReaderOutput.h:416:12: note: class 'AVAssetReaderVideoCompositionOutput' does not conform to the 'Sendable' protocol
414 |  */
415 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
416 | @interface AVAssetReaderVideoCompositionOutput : AVAssetReaderOutput
    |            `- note: class 'AVAssetReaderVideoCompositionOutput' does not conform to the 'Sendable' protocol
417 | {
418 | @private
/Users/admin/builder/spi-builder-workspace/Sources/NextLevelSessionExporter.swift:25:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
 23 |
 24 | import Foundation
 25 | import AVFoundation
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
 26 |
 27 | // MARK: - types
/Users/admin/builder/spi-builder-workspace/Sources/NextLevelSessionExporter.swift:323:90: warning: capture of 'videoInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
321 |             dispatchGroup.enter()
322 |             videoInput.requestMediaDataWhenReady(on: self._inputQueue, using: {
323 |                 if self.encode(readySamplesFromReaderOutput: videoOutput, toWriterInput: videoInput) == false {
    |                                                                                          `- warning: capture of 'videoInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
324 |                     dispatchGroup.leave()
325 |                 }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriterInput.h:43:12: note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  41 |  */
  42 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
  43 | @interface AVAssetWriterInput : NSObject
     |            `- note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  44 | {
  45 | @private
/Users/admin/builder/spi-builder-workspace/Sources/NextLevelSessionExporter.swift:333:62: warning: capture of 'audioOutput' with non-sendable type 'AVAssetReaderAudioMixOutput' in a '@Sendable' closure
331 |             dispatchGroup.enter()
332 |             audioInput.requestMediaDataWhenReady(on: self._inputQueue, using: {
333 |                 if self.encode(readySamplesFromReaderOutput: audioOutput, toWriterInput: audioInput) == false {
    |                                                              `- warning: capture of 'audioOutput' with non-sendable type 'AVAssetReaderAudioMixOutput' in a '@Sendable' closure
334 |                     dispatchGroup.leave()
335 |                 }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetReaderOutput.h:300:12: note: class 'AVAssetReaderAudioMixOutput' does not conform to the 'Sendable' protocol
298 |  */
299 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
300 | @interface AVAssetReaderAudioMixOutput : AVAssetReaderOutput
    |            `- note: class 'AVAssetReaderAudioMixOutput' does not conform to the 'Sendable' protocol
301 | {
302 | @private
/Users/admin/builder/spi-builder-workspace/Sources/NextLevelSessionExporter.swift:333:90: warning: capture of 'audioInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
331 |             dispatchGroup.enter()
332 |             audioInput.requestMediaDataWhenReady(on: self._inputQueue, using: {
333 |                 if self.encode(readySamplesFromReaderOutput: audioOutput, toWriterInput: audioInput) == false {
    |                                                                                          `- warning: capture of 'audioInput' with non-sendable type 'AVAssetWriterInput' in a '@Sendable' closure
334 |                     dispatchGroup.leave()
335 |                 }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVAssetWriterInput.h:43:12: note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  41 |  */
  42 | API_AVAILABLE(macos(10.7), ios(4.1), tvos(9.0), visionos(1.0)) API_UNAVAILABLE(watchos)
  43 | @interface AVAssetWriterInput : NSObject
     |            `- note: class 'AVAssetWriterInput' does not conform to the 'Sendable' protocol
  44 | {
  45 | @private
[4/4] Emitting module SessionExporter
Build complete! (8.06s)
warning: 'spi-builder-workspace': /Users/admin/builder/spi-builder-workspace/Package.swift:28:15: warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
26 | import PackageDescription
27 |
28 | let package = Package(
   |               |- warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
   |               `- note: use 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)' instead
29 |     name: "NextLevelSessionExporter",
30 |     platforms: [
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "NextLevelSessionExporter",
  "name" : "NextLevelSessionExporter",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "NextLevelSessionExporter",
      "targets" : [
        "SessionExporter"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "6"
  ],
  "targets" : [
    {
      "c99name" : "SessionExporter",
      "module_type" : "SwiftTarget",
      "name" : "SessionExporter",
      "path" : "Sources",
      "product_memberships" : [
        "NextLevelSessionExporter"
      ],
      "sources" : [
        "NextLevelSessionExporter.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
warning: 'spi-builder-workspace': /Users/admin/builder/spi-builder-workspace/Package.swift:28:15: warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
26 | import PackageDescription
27 |
28 | let package = Package(
   |               |- warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
   |               `- note: use 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)' instead
29 |     name: "NextLevelSessionExporter",
30 |     platforms: [
Done.