The Swift Package Index logo.Swift Package Index

Build Information

Failed to build glTFSceneKit, reference 0.0.10 (434ccf), with Swift 6.2 for macOS (SPM) on 22 Jun 2025 01:52:13 UTC.

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/sakrist/glTFSceneKit.git
Reference: 0.0.10
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sakrist/glTFSceneKit
 * tag               0.0.10     -> FETCH_HEAD
HEAD is now at 434ccf3 fixed conversion progress for multithreading; construct nodes tree upfront to fix deadlock issue;
Submodule path 'Draco': checked out '9bdbe49ea00171089bb666692a0ba6476b408545'
Submodule 'Draco' (https://github.com/3d4medical/DracoSwiftPackage.git) registered for path 'Draco'
Cloning into '/Users/admin/builder/spi-builder-workspace/Draco'...
Cloned https://github.com/sakrist/glTFSceneKit.git
Revision (git rev-parse @):
434ccf32da18107bcd419fab6ef4c9a0b21a8d4d
SUCCESS checkout https://github.com/sakrist/glTFSceneKit.git at 0.0.10
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/sakrist/glTFSceneKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/39] Emitting module glTFSceneKit
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:26:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 24 | public extension KeyedDecodingContainer {
 25 |
 26 |     public func decode(_ type: Dictionary<String, Any>.Type, forKey key: K) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 27 |         let container = try self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
 28 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:31:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 29 |     }
 30 |
 31 |     public func decode(_ type: Array<Any>.Type, forKey key: K) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 32 |         var container = try self.nestedUnkeyedContainer(forKey: key)
 33 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 35 |
 36 |
 37 |     public func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 38 |         var dictionary = Dictionary<String, Any>()
 39 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:61:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 59 | public extension UnkeyedDecodingContainer {
 60 |
 61 |     public mutating func decode(_ type: Array<Any>.Type) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 62 |         var array: [Any] = []
 63 |         while isAtEnd == false {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:79:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 77 |     }
 78 |
 79 |     public mutating func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 80 |         let nestedContainer = try self.nestedContainer(keyedBy: JSONCodingKeys.self)
 81 |         return try nestedContainer.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:87:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 85 |
 86 | public extension KeyedEncodingContainerProtocol where Key == JSONCodingKeys {
 87 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 88 |         try value.forEach({ (key, value) in
 89 |             let key = JSONCodingKeys(stringValue: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:115:5: warning: 'public' modifier is redundant for instance method declared in a public extension
113 |
114 | public extension KeyedEncodingContainerProtocol {
115 |     public mutating func encode(_ value: Dictionary<String, Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
116 |         if value != nil {
117 |             var container = self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:122:5: warning: 'public' modifier is redundant for instance method declared in a public extension
120 |     }
121 |
122 |     public mutating func encode(_ value: Array<Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
123 |         if value != nil {
124 |             var container = self.nestedUnkeyedContainer(forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:131:5: warning: 'public' modifier is redundant for instance method declared in a public extension
129 |
130 | public extension UnkeyedEncodingContainer {
131 |     public mutating func encode(_ value: Array<Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
132 |         try value.enumerated().forEach({ (index, value) in
133 |             switch value {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:157:5: warning: 'public' modifier is redundant for instance method declared in a public extension
155 |     }
156 |
157 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
158 |         var nestedContainer = self.nestedContainer(keyedBy: JSONCodingKeys.self)
159 |         try nestedContainer.encode(value)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift:37:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 35 |
 36 |
 37 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |
 39 | extension SCNMatrix4 {
[4/42] Compiling glTFSceneKit GLTFMeshPrimitive.swift
[5/42] Compiling glTFSceneKit GLTFNode.swift
[6/42] Compiling glTFSceneKit GLTFSampler.swift
[7/42] Compiling glTFSceneKit GLTFScene.swift
[8/42] Compiling glTFSceneKit GLTFCameraPerspective.swift
[9/42] Compiling glTFSceneKit GLTFImage.swift
[10/42] Compiling glTFSceneKit GLTFKHRDracoMeshCompressionExtension.swift
[11/42] Compiling glTFSceneKit GLTFMaterial.swift
[12/42] Compiling glTFSceneKit GLTFAnimationChannel.swift
[13/42] Compiling glTFSceneKit GLTFAnimationChannelTarget.swift
[14/42] Compiling glTFSceneKit GLTFAnimationSampler.swift
[15/42] Compiling glTFSceneKit GLTFAsset.swift
[16/42] Compiling glTFSceneKit GLTFMaterialNormalTextureInfo.swift
[17/42] Compiling glTFSceneKit GLTFMaterialOcclusionTextureInfo.swift
[18/42] Compiling glTFSceneKit GLTFMaterialPBRMetallicRoughness.swift
[19/42] Compiling glTFSceneKit GLTFMesh.swift
[20/42] Compiling glTFSceneKit GLTFSkin.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:26:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 24 | public extension KeyedDecodingContainer {
 25 |
 26 |     public func decode(_ type: Dictionary<String, Any>.Type, forKey key: K) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 27 |         let container = try self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
 28 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:31:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 29 |     }
 30 |
 31 |     public func decode(_ type: Array<Any>.Type, forKey key: K) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 32 |         var container = try self.nestedUnkeyedContainer(forKey: key)
 33 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 35 |
 36 |
 37 |     public func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 38 |         var dictionary = Dictionary<String, Any>()
 39 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:61:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 59 | public extension UnkeyedDecodingContainer {
 60 |
 61 |     public mutating func decode(_ type: Array<Any>.Type) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 62 |         var array: [Any] = []
 63 |         while isAtEnd == false {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:79:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 77 |     }
 78 |
 79 |     public mutating func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 80 |         let nestedContainer = try self.nestedContainer(keyedBy: JSONCodingKeys.self)
 81 |         return try nestedContainer.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:87:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 85 |
 86 | public extension KeyedEncodingContainerProtocol where Key == JSONCodingKeys {
 87 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 88 |         try value.forEach({ (key, value) in
 89 |             let key = JSONCodingKeys(stringValue: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:115:5: warning: 'public' modifier is redundant for instance method declared in a public extension
113 |
114 | public extension KeyedEncodingContainerProtocol {
115 |     public mutating func encode(_ value: Dictionary<String, Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
116 |         if value != nil {
117 |             var container = self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:122:5: warning: 'public' modifier is redundant for instance method declared in a public extension
120 |     }
121 |
122 |     public mutating func encode(_ value: Array<Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
123 |         if value != nil {
124 |             var container = self.nestedUnkeyedContainer(forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:131:5: warning: 'public' modifier is redundant for instance method declared in a public extension
129 |
130 | public extension UnkeyedEncodingContainer {
131 |     public mutating func encode(_ value: Array<Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
132 |         try value.enumerated().forEach({ (index, value) in
133 |             switch value {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:157:5: warning: 'public' modifier is redundant for instance method declared in a public extension
155 |     }
156 |
157 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
158 |         var nestedContainer = self.nestedContainer(keyedBy: JSONCodingKeys.self)
159 |         try nestedContainer.encode(value)
[21/42] Compiling glTFSceneKit GLTFTexture.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:26:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 24 | public extension KeyedDecodingContainer {
 25 |
 26 |     public func decode(_ type: Dictionary<String, Any>.Type, forKey key: K) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 27 |         let container = try self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
 28 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:31:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 29 |     }
 30 |
 31 |     public func decode(_ type: Array<Any>.Type, forKey key: K) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 32 |         var container = try self.nestedUnkeyedContainer(forKey: key)
 33 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 35 |
 36 |
 37 |     public func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 38 |         var dictionary = Dictionary<String, Any>()
 39 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:61:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 59 | public extension UnkeyedDecodingContainer {
 60 |
 61 |     public mutating func decode(_ type: Array<Any>.Type) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 62 |         var array: [Any] = []
 63 |         while isAtEnd == false {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:79:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 77 |     }
 78 |
 79 |     public mutating func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 80 |         let nestedContainer = try self.nestedContainer(keyedBy: JSONCodingKeys.self)
 81 |         return try nestedContainer.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:87:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 85 |
 86 | public extension KeyedEncodingContainerProtocol where Key == JSONCodingKeys {
 87 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 88 |         try value.forEach({ (key, value) in
 89 |             let key = JSONCodingKeys(stringValue: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:115:5: warning: 'public' modifier is redundant for instance method declared in a public extension
113 |
114 | public extension KeyedEncodingContainerProtocol {
115 |     public mutating func encode(_ value: Dictionary<String, Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
116 |         if value != nil {
117 |             var container = self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:122:5: warning: 'public' modifier is redundant for instance method declared in a public extension
120 |     }
121 |
122 |     public mutating func encode(_ value: Array<Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
123 |         if value != nil {
124 |             var container = self.nestedUnkeyedContainer(forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:131:5: warning: 'public' modifier is redundant for instance method declared in a public extension
129 |
130 | public extension UnkeyedEncodingContainer {
131 |     public mutating func encode(_ value: Array<Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
132 |         try value.enumerated().forEach({ (index, value) in
133 |             switch value {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:157:5: warning: 'public' modifier is redundant for instance method declared in a public extension
155 |     }
156 |
157 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
158 |         var nestedContainer = self.nestedContainer(keyedBy: JSONCodingKeys.self)
159 |         try nestedContainer.encode(value)
[22/42] Compiling glTFSceneKit GLTFTextureInfo.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:26:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 24 | public extension KeyedDecodingContainer {
 25 |
 26 |     public func decode(_ type: Dictionary<String, Any>.Type, forKey key: K) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 27 |         let container = try self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
 28 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:31:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 29 |     }
 30 |
 31 |     public func decode(_ type: Array<Any>.Type, forKey key: K) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 32 |         var container = try self.nestedUnkeyedContainer(forKey: key)
 33 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 35 |
 36 |
 37 |     public func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 38 |         var dictionary = Dictionary<String, Any>()
 39 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:61:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 59 | public extension UnkeyedDecodingContainer {
 60 |
 61 |     public mutating func decode(_ type: Array<Any>.Type) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 62 |         var array: [Any] = []
 63 |         while isAtEnd == false {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:79:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 77 |     }
 78 |
 79 |     public mutating func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 80 |         let nestedContainer = try self.nestedContainer(keyedBy: JSONCodingKeys.self)
 81 |         return try nestedContainer.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:87:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 85 |
 86 | public extension KeyedEncodingContainerProtocol where Key == JSONCodingKeys {
 87 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 88 |         try value.forEach({ (key, value) in
 89 |             let key = JSONCodingKeys(stringValue: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:115:5: warning: 'public' modifier is redundant for instance method declared in a public extension
113 |
114 | public extension KeyedEncodingContainerProtocol {
115 |     public mutating func encode(_ value: Dictionary<String, Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
116 |         if value != nil {
117 |             var container = self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:122:5: warning: 'public' modifier is redundant for instance method declared in a public extension
120 |     }
121 |
122 |     public mutating func encode(_ value: Array<Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
123 |         if value != nil {
124 |             var container = self.nestedUnkeyedContainer(forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:131:5: warning: 'public' modifier is redundant for instance method declared in a public extension
129 |
130 | public extension UnkeyedEncodingContainer {
131 |     public mutating func encode(_ value: Array<Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
132 |         try value.enumerated().forEach({ (index, value) in
133 |             switch value {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:157:5: warning: 'public' modifier is redundant for instance method declared in a public extension
155 |     }
156 |
157 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
158 |         var nestedContainer = self.nestedContainer(keyedBy: JSONCodingKeys.self)
159 |         try nestedContainer.encode(value)
[23/42] Compiling glTFSceneKit JSONCodingKeys.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:26:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 24 | public extension KeyedDecodingContainer {
 25 |
 26 |     public func decode(_ type: Dictionary<String, Any>.Type, forKey key: K) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 27 |         let container = try self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
 28 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:31:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 29 |     }
 30 |
 31 |     public func decode(_ type: Array<Any>.Type, forKey key: K) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 32 |         var container = try self.nestedUnkeyedContainer(forKey: key)
 33 |         return try container.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 35 |
 36 |
 37 |     public func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 38 |         var dictionary = Dictionary<String, Any>()
 39 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:61:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 59 | public extension UnkeyedDecodingContainer {
 60 |
 61 |     public mutating func decode(_ type: Array<Any>.Type) throws -> Array<Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 62 |         var array: [Any] = []
 63 |         while isAtEnd == false {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:79:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 77 |     }
 78 |
 79 |     public mutating func decode(_ type: Dictionary<String, Any>.Type) throws -> Dictionary<String, Any> {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 80 |         let nestedContainer = try self.nestedContainer(keyedBy: JSONCodingKeys.self)
 81 |         return try nestedContainer.decode(type)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:87:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 85 |
 86 | public extension KeyedEncodingContainerProtocol where Key == JSONCodingKeys {
 87 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 88 |         try value.forEach({ (key, value) in
 89 |             let key = JSONCodingKeys(stringValue: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:115:5: warning: 'public' modifier is redundant for instance method declared in a public extension
113 |
114 | public extension KeyedEncodingContainerProtocol {
115 |     public mutating func encode(_ value: Dictionary<String, Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
116 |         if value != nil {
117 |             var container = self.nestedContainer(keyedBy: JSONCodingKeys.self, forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:122:5: warning: 'public' modifier is redundant for instance method declared in a public extension
120 |     }
121 |
122 |     public mutating func encode(_ value: Array<Any>?, forKey key: Key) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
123 |         if value != nil {
124 |             var container = self.nestedUnkeyedContainer(forKey: key)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:131:5: warning: 'public' modifier is redundant for instance method declared in a public extension
129 |
130 | public extension UnkeyedEncodingContainer {
131 |     public mutating func encode(_ value: Array<Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
132 |         try value.enumerated().forEach({ (index, value) in
133 |             switch value {
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF/JSONCodingKeys.swift:157:5: warning: 'public' modifier is redundant for instance method declared in a public extension
155 |     }
156 |
157 |     public mutating func encode(_ value: Dictionary<String, Any>) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
158 |         var nestedContainer = self.nestedContainer(keyedBy: JSONCodingKeys.self)
159 |         try nestedContainer.encode(value)
[24/42] Compiling glTFSceneKit GLTFBuffer.swift
[25/42] Compiling glTFSceneKit GLTFBufferView.swift
[26/42] Compiling glTFSceneKit GLTFCamera.swift
[27/42] Compiling glTFSceneKit GLTFCameraOrthographic.swift
[28/42] Compiling glTFSceneKit GLTFAccessorSparse.swift
[29/42] Compiling glTFSceneKit GLTFAccessorSparseIndices.swift
[30/42] Compiling glTFSceneKit GLTFAccessorSparseValues.swift
[31/42] Compiling glTFSceneKit GLTFAnimation.swift
[32/42] Compiling glTFSceneKit GLTF+Animation.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift:25:52: error: cannot find 'uncompressDracoData' in scope
23 |             }
24 |
25 |             let (indicesData, verticies, stride) = uncompressDracoData(data, triangleStrip: triangleStrip)
   |                                                    `- error: cannot find 'uncompressDracoData' in scope
26 |
27 |             let indexSize = MemoryLayout<UInt32>.size;
[33/42] Compiling glTFSceneKit GLTF+CompressedTexture.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift:25:52: error: cannot find 'uncompressDracoData' in scope
23 |             }
24 |
25 |             let (indicesData, verticies, stride) = uncompressDracoData(data, triangleStrip: triangleStrip)
   |                                                    `- error: cannot find 'uncompressDracoData' in scope
26 |
27 |             let indexSize = MemoryLayout<UInt32>.size;
[34/42] Compiling glTFSceneKit GLTF+Draco.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift:25:52: error: cannot find 'uncompressDracoData' in scope
23 |             }
24 |
25 |             let (indicesData, verticies, stride) = uncompressDracoData(data, triangleStrip: triangleStrip)
   |                                                    `- error: cannot find 'uncompressDracoData' in scope
26 |
27 |             let indexSize = MemoryLayout<UInt32>.size;
[35/42] Compiling glTFSceneKit GLTF+Material.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Draco.swift:25:52: error: cannot find 'uncompressDracoData' in scope
23 |             }
24 |
25 |             let (indicesData, verticies, stride) = uncompressDracoData(data, triangleStrip: triangleStrip)
   |                                                    `- error: cannot find 'uncompressDracoData' in scope
26 |
27 |             let indexSize = MemoryLayout<UInt32>.size;
[36/42] Compiling glTFSceneKit GLTF_3D4MCompressedTextureExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift:37:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 35 |
 36 |
 37 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |
 39 | extension SCNMatrix4 {
[37/42] Compiling glTFSceneKit Helper.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift:37:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 35 |
 36 |
 37 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |
 39 | extension SCNMatrix4 {
[38/42] Compiling glTFSceneKit TextureStorageManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/Helper.swift:37:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 35 |
 36 |
 37 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 38 |
 39 | extension SCNMatrix4 {
[39/42] Compiling glTFSceneKit GLTF+Resources.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:34:58: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 32 |     public var loader:GLTFResourceLoader {
 33 |         get {
 34 |             var loader_ = objc_getAssociatedObject(self, &Keys.resource_loader) as? GLTFResourceLoader
    |                                                          `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 35 |             if loader_ != nil {
 36 |                 return loader_!
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:42:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 40 |             return loader_!
 41 |         }
 42 |         set { objc_setAssociatedObject(self, &Keys.resource_loader, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 43 |     }
 44 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:154:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
152 |
153 |     public var data:Data? {
154 |         get { return objc_getAssociatedObject(self, &GLTFBuffer.data_associate_key) as? Data }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
155 |         set { objc_setAssociatedObject(self, &GLTFBuffer.data_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
156 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:155:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
153 |     public var data:Data? {
154 |         get { return objc_getAssociatedObject(self, &GLTFBuffer.data_associate_key) as? Data }
155 |         set { objc_setAssociatedObject(self, &GLTFBuffer.data_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
156 |     }
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:164:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
162 |
163 |     public var image:OSImage? {
164 |         get { return objc_getAssociatedObject(self, &GLTFImage.image_associate_key) as? OSImage }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
165 |         set { objc_setAssociatedObject(self, &GLTFImage.image_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
166 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:165:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
163 |     public var image:OSImage? {
164 |         get { return objc_getAssociatedObject(self, &GLTFImage.image_associate_key) as? OSImage }
165 |         set { objc_setAssociatedObject(self, &GLTFImage.image_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
166 |     }
167 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:47:54: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 45 |     /// Status will be true if `cancel` was call.
 46 |     @objc open private(set) var isCancelled:Bool {
 47 |         get { return (objc_getAssociatedObject(self, &Keys.load_canceled) as? Bool) ?? false }
    |                                                      `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 48 |         set { objc_setAssociatedObject(self, &Keys.load_canceled, newValue, .OBJC_ASSOCIATION_ASSIGN) }
 49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:48:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 46 |     @objc open private(set) var isCancelled:Bool {
 47 |         get { return (objc_getAssociatedObject(self, &Keys.load_canceled) as? Bool) ?? false }
 48 |         set { objc_setAssociatedObject(self, &Keys.load_canceled, newValue, .OBJC_ASSOCIATION_ASSIGN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:52:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 50 |
 51 |     var cache_nodes:[SCNNode?]? {
 52 |         get { return objc_getAssociatedObject(self, &Keys.cache_nodes) as? [SCNNode?] }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 53 |         set { objc_setAssociatedObject(self, &Keys.cache_nodes, newValue, .OBJC_ASSOCIATION_RETAIN) }
 54 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:53:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 51 |     var cache_nodes:[SCNNode?]? {
 52 |         get { return objc_getAssociatedObject(self, &Keys.cache_nodes) as? [SCNNode?] }
 53 |         set { objc_setAssociatedObject(self, &Keys.cache_nodes, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 54 |     }
 55 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:58:52: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 56 |     var convertionProgressMask:ConvertionProgressMask {
 57 |         get {
 58 |             var p = objc_getAssociatedObject(self, &Keys.convertionProgress)
    |                                                    `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 59 |             if p == nil {
 60 |                 p = ConvertionProgressMask.init(rawValue: 0)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:61:48: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 59 |             if p == nil {
 60 |                 p = ConvertionProgressMask.init(rawValue: 0)
 61 |                 objc_setAssociatedObject(self, &Keys.convertionProgress, p, .OBJC_ASSOCIATION_RETAIN)
    |                                                `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 62 |             }
 63 |             return p as! ConvertionProgressMask
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:65:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 63 |             return p as! ConvertionProgressMask
 64 |         }
 65 |         set { objc_setAssociatedObject(self, &Keys.convertionProgress, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 66 |     }
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:69:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 67 |
 68 |     var renderer:SCNSceneRenderer? {
 69 |         get { return objc_getAssociatedObject(self, &Keys.scnview) as? SCNSceneRenderer }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 70 |         set { objc_setAssociatedObject(self, &Keys.scnview, newValue, .OBJC_ASSOCIATION_ASSIGN) }
 71 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:70:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 68 |     var renderer:SCNSceneRenderer? {
 69 |         get { return objc_getAssociatedObject(self, &Keys.scnview) as? SCNSceneRenderer }
 70 |         set { objc_setAssociatedObject(self, &Keys.scnview, newValue, .OBJC_ASSOCIATION_ASSIGN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 71 |     }
 72 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:74:54: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 72 |
 73 |     var _completionHandler:((Error?) -> Void) {
 74 |         get { return (objc_getAssociatedObject(self, &Keys.completion_handler) as? ((Error?) -> Void) ?? {_ in }) }
    |                                                      `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 75 |         set { objc_setAssociatedObject(self, &Keys.completion_handler, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
 76 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:75:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 73 |     var _completionHandler:((Error?) -> Void) {
 74 |         get { return (objc_getAssociatedObject(self, &Keys.completion_handler) as? ((Error?) -> Void) ?? {_ in }) }
 75 |         set { objc_setAssociatedObject(self, &Keys.completion_handler, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:80:55: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 78 |     var nodesDispatchGroup:DispatchGroup {
 79 |         get {
 80 |             if let d = objc_getAssociatedObject(self, &Keys.nodesDispatchGroup) {
    |                                                       `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 81 |                 return d as! DispatchGroup
 82 |             }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:84:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 82 |             }
 83 |             let group = DispatchGroup()
 84 |             objc_setAssociatedObject(self, &Keys.nodesDispatchGroup, group, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
    |                                            `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 85 |             return group
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:87:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 85 |             return group
 86 |         }
 87 |         set { objc_setAssociatedObject(self, &Keys.nodesDispatchGroup, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 88 |     }
 89 |
[40/42] Compiling glTFSceneKit GLTF+SceneKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:34:58: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 32 |     public var loader:GLTFResourceLoader {
 33 |         get {
 34 |             var loader_ = objc_getAssociatedObject(self, &Keys.resource_loader) as? GLTFResourceLoader
    |                                                          `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 35 |             if loader_ != nil {
 36 |                 return loader_!
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:42:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 40 |             return loader_!
 41 |         }
 42 |         set { objc_setAssociatedObject(self, &Keys.resource_loader, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 43 |     }
 44 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:154:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
152 |
153 |     public var data:Data? {
154 |         get { return objc_getAssociatedObject(self, &GLTFBuffer.data_associate_key) as? Data }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
155 |         set { objc_setAssociatedObject(self, &GLTFBuffer.data_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
156 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:155:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
153 |     public var data:Data? {
154 |         get { return objc_getAssociatedObject(self, &GLTFBuffer.data_associate_key) as? Data }
155 |         set { objc_setAssociatedObject(self, &GLTFBuffer.data_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
156 |     }
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:164:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
162 |
163 |     public var image:OSImage? {
164 |         get { return objc_getAssociatedObject(self, &GLTFImage.image_associate_key) as? OSImage }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
165 |         set { objc_setAssociatedObject(self, &GLTFImage.image_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
166 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:165:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
163 |     public var image:OSImage? {
164 |         get { return objc_getAssociatedObject(self, &GLTFImage.image_associate_key) as? OSImage }
165 |         set { objc_setAssociatedObject(self, &GLTFImage.image_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
166 |     }
167 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:47:54: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 45 |     /// Status will be true if `cancel` was call.
 46 |     @objc open private(set) var isCancelled:Bool {
 47 |         get { return (objc_getAssociatedObject(self, &Keys.load_canceled) as? Bool) ?? false }
    |                                                      `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 48 |         set { objc_setAssociatedObject(self, &Keys.load_canceled, newValue, .OBJC_ASSOCIATION_ASSIGN) }
 49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:48:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 46 |     @objc open private(set) var isCancelled:Bool {
 47 |         get { return (objc_getAssociatedObject(self, &Keys.load_canceled) as? Bool) ?? false }
 48 |         set { objc_setAssociatedObject(self, &Keys.load_canceled, newValue, .OBJC_ASSOCIATION_ASSIGN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:52:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 50 |
 51 |     var cache_nodes:[SCNNode?]? {
 52 |         get { return objc_getAssociatedObject(self, &Keys.cache_nodes) as? [SCNNode?] }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 53 |         set { objc_setAssociatedObject(self, &Keys.cache_nodes, newValue, .OBJC_ASSOCIATION_RETAIN) }
 54 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:53:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 51 |     var cache_nodes:[SCNNode?]? {
 52 |         get { return objc_getAssociatedObject(self, &Keys.cache_nodes) as? [SCNNode?] }
 53 |         set { objc_setAssociatedObject(self, &Keys.cache_nodes, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 54 |     }
 55 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:58:52: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 56 |     var convertionProgressMask:ConvertionProgressMask {
 57 |         get {
 58 |             var p = objc_getAssociatedObject(self, &Keys.convertionProgress)
    |                                                    `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 59 |             if p == nil {
 60 |                 p = ConvertionProgressMask.init(rawValue: 0)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:61:48: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 59 |             if p == nil {
 60 |                 p = ConvertionProgressMask.init(rawValue: 0)
 61 |                 objc_setAssociatedObject(self, &Keys.convertionProgress, p, .OBJC_ASSOCIATION_RETAIN)
    |                                                `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 62 |             }
 63 |             return p as! ConvertionProgressMask
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:65:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 63 |             return p as! ConvertionProgressMask
 64 |         }
 65 |         set { objc_setAssociatedObject(self, &Keys.convertionProgress, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 66 |     }
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:69:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 67 |
 68 |     var renderer:SCNSceneRenderer? {
 69 |         get { return objc_getAssociatedObject(self, &Keys.scnview) as? SCNSceneRenderer }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 70 |         set { objc_setAssociatedObject(self, &Keys.scnview, newValue, .OBJC_ASSOCIATION_ASSIGN) }
 71 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:70:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 68 |     var renderer:SCNSceneRenderer? {
 69 |         get { return objc_getAssociatedObject(self, &Keys.scnview) as? SCNSceneRenderer }
 70 |         set { objc_setAssociatedObject(self, &Keys.scnview, newValue, .OBJC_ASSOCIATION_ASSIGN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 71 |     }
 72 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:74:54: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 72 |
 73 |     var _completionHandler:((Error?) -> Void) {
 74 |         get { return (objc_getAssociatedObject(self, &Keys.completion_handler) as? ((Error?) -> Void) ?? {_ in }) }
    |                                                      `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 75 |         set { objc_setAssociatedObject(self, &Keys.completion_handler, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
 76 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:75:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 73 |     var _completionHandler:((Error?) -> Void) {
 74 |         get { return (objc_getAssociatedObject(self, &Keys.completion_handler) as? ((Error?) -> Void) ?? {_ in }) }
 75 |         set { objc_setAssociatedObject(self, &Keys.completion_handler, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:80:55: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 78 |     var nodesDispatchGroup:DispatchGroup {
 79 |         get {
 80 |             if let d = objc_getAssociatedObject(self, &Keys.nodesDispatchGroup) {
    |                                                       `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 81 |                 return d as! DispatchGroup
 82 |             }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:84:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 82 |             }
 83 |             let group = DispatchGroup()
 84 |             objc_setAssociatedObject(self, &Keys.nodesDispatchGroup, group, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
    |                                            `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 85 |             return group
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:87:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 85 |             return group
 86 |         }
 87 |         set { objc_setAssociatedObject(self, &Keys.nodesDispatchGroup, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 88 |     }
 89 |
[41/42] Compiling glTFSceneKit GLTF.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:34:58: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 32 |     public var loader:GLTFResourceLoader {
 33 |         get {
 34 |             var loader_ = objc_getAssociatedObject(self, &Keys.resource_loader) as? GLTFResourceLoader
    |                                                          `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 35 |             if loader_ != nil {
 36 |                 return loader_!
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:42:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 40 |             return loader_!
 41 |         }
 42 |         set { objc_setAssociatedObject(self, &Keys.resource_loader, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 43 |     }
 44 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:154:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
152 |
153 |     public var data:Data? {
154 |         get { return objc_getAssociatedObject(self, &GLTFBuffer.data_associate_key) as? Data }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
155 |         set { objc_setAssociatedObject(self, &GLTFBuffer.data_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
156 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:155:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
153 |     public var data:Data? {
154 |         get { return objc_getAssociatedObject(self, &GLTFBuffer.data_associate_key) as? Data }
155 |         set { objc_setAssociatedObject(self, &GLTFBuffer.data_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
156 |     }
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:164:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
162 |
163 |     public var image:OSImage? {
164 |         get { return objc_getAssociatedObject(self, &GLTFImage.image_associate_key) as? OSImage }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
165 |         set { objc_setAssociatedObject(self, &GLTFImage.image_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
166 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:165:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
163 |     public var image:OSImage? {
164 |         get { return objc_getAssociatedObject(self, &GLTFImage.image_associate_key) as? OSImage }
165 |         set { objc_setAssociatedObject(self, &GLTFImage.image_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
166 |     }
167 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:47:54: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 45 |     /// Status will be true if `cancel` was call.
 46 |     @objc open private(set) var isCancelled:Bool {
 47 |         get { return (objc_getAssociatedObject(self, &Keys.load_canceled) as? Bool) ?? false }
    |                                                      `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 48 |         set { objc_setAssociatedObject(self, &Keys.load_canceled, newValue, .OBJC_ASSOCIATION_ASSIGN) }
 49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:48:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 46 |     @objc open private(set) var isCancelled:Bool {
 47 |         get { return (objc_getAssociatedObject(self, &Keys.load_canceled) as? Bool) ?? false }
 48 |         set { objc_setAssociatedObject(self, &Keys.load_canceled, newValue, .OBJC_ASSOCIATION_ASSIGN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:52:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 50 |
 51 |     var cache_nodes:[SCNNode?]? {
 52 |         get { return objc_getAssociatedObject(self, &Keys.cache_nodes) as? [SCNNode?] }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 53 |         set { objc_setAssociatedObject(self, &Keys.cache_nodes, newValue, .OBJC_ASSOCIATION_RETAIN) }
 54 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:53:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 51 |     var cache_nodes:[SCNNode?]? {
 52 |         get { return objc_getAssociatedObject(self, &Keys.cache_nodes) as? [SCNNode?] }
 53 |         set { objc_setAssociatedObject(self, &Keys.cache_nodes, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 54 |     }
 55 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:58:52: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 56 |     var convertionProgressMask:ConvertionProgressMask {
 57 |         get {
 58 |             var p = objc_getAssociatedObject(self, &Keys.convertionProgress)
    |                                                    `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 59 |             if p == nil {
 60 |                 p = ConvertionProgressMask.init(rawValue: 0)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:61:48: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 59 |             if p == nil {
 60 |                 p = ConvertionProgressMask.init(rawValue: 0)
 61 |                 objc_setAssociatedObject(self, &Keys.convertionProgress, p, .OBJC_ASSOCIATION_RETAIN)
    |                                                `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 62 |             }
 63 |             return p as! ConvertionProgressMask
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:65:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 63 |             return p as! ConvertionProgressMask
 64 |         }
 65 |         set { objc_setAssociatedObject(self, &Keys.convertionProgress, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 66 |     }
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:69:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 67 |
 68 |     var renderer:SCNSceneRenderer? {
 69 |         get { return objc_getAssociatedObject(self, &Keys.scnview) as? SCNSceneRenderer }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 70 |         set { objc_setAssociatedObject(self, &Keys.scnview, newValue, .OBJC_ASSOCIATION_ASSIGN) }
 71 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:70:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 68 |     var renderer:SCNSceneRenderer? {
 69 |         get { return objc_getAssociatedObject(self, &Keys.scnview) as? SCNSceneRenderer }
 70 |         set { objc_setAssociatedObject(self, &Keys.scnview, newValue, .OBJC_ASSOCIATION_ASSIGN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 71 |     }
 72 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:74:54: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 72 |
 73 |     var _completionHandler:((Error?) -> Void) {
 74 |         get { return (objc_getAssociatedObject(self, &Keys.completion_handler) as? ((Error?) -> Void) ?? {_ in }) }
    |                                                      `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 75 |         set { objc_setAssociatedObject(self, &Keys.completion_handler, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
 76 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:75:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 73 |     var _completionHandler:((Error?) -> Void) {
 74 |         get { return (objc_getAssociatedObject(self, &Keys.completion_handler) as? ((Error?) -> Void) ?? {_ in }) }
 75 |         set { objc_setAssociatedObject(self, &Keys.completion_handler, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:80:55: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 78 |     var nodesDispatchGroup:DispatchGroup {
 79 |         get {
 80 |             if let d = objc_getAssociatedObject(self, &Keys.nodesDispatchGroup) {
    |                                                       `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 81 |                 return d as! DispatchGroup
 82 |             }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:84:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 82 |             }
 83 |             let group = DispatchGroup()
 84 |             objc_setAssociatedObject(self, &Keys.nodesDispatchGroup, group, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
    |                                            `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 85 |             return group
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:87:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 85 |             return group
 86 |         }
 87 |         set { objc_setAssociatedObject(self, &Keys.nodesDispatchGroup, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 88 |     }
 89 |
[42/42] Compiling glTFSceneKit GLTFAccessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:34:58: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 32 |     public var loader:GLTFResourceLoader {
 33 |         get {
 34 |             var loader_ = objc_getAssociatedObject(self, &Keys.resource_loader) as? GLTFResourceLoader
    |                                                          `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 35 |             if loader_ != nil {
 36 |                 return loader_!
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:42:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 40 |             return loader_!
 41 |         }
 42 |         set { objc_setAssociatedObject(self, &Keys.resource_loader, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 43 |     }
 44 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:154:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
152 |
153 |     public var data:Data? {
154 |         get { return objc_getAssociatedObject(self, &GLTFBuffer.data_associate_key) as? Data }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
155 |         set { objc_setAssociatedObject(self, &GLTFBuffer.data_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
156 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:155:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
153 |     public var data:Data? {
154 |         get { return objc_getAssociatedObject(self, &GLTFBuffer.data_associate_key) as? Data }
155 |         set { objc_setAssociatedObject(self, &GLTFBuffer.data_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
156 |     }
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:164:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
162 |
163 |     public var image:OSImage? {
164 |         get { return objc_getAssociatedObject(self, &GLTFImage.image_associate_key) as? OSImage }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
165 |         set { objc_setAssociatedObject(self, &GLTFImage.image_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
166 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+Resources.swift:165:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
163 |     public var image:OSImage? {
164 |         get { return objc_getAssociatedObject(self, &GLTFImage.image_associate_key) as? OSImage }
165 |         set { objc_setAssociatedObject(self, &GLTFImage.image_associate_key, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
166 |     }
167 | }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:47:54: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 45 |     /// Status will be true if `cancel` was call.
 46 |     @objc open private(set) var isCancelled:Bool {
 47 |         get { return (objc_getAssociatedObject(self, &Keys.load_canceled) as? Bool) ?? false }
    |                                                      `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 48 |         set { objc_setAssociatedObject(self, &Keys.load_canceled, newValue, .OBJC_ASSOCIATION_ASSIGN) }
 49 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:48:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 46 |     @objc open private(set) var isCancelled:Bool {
 47 |         get { return (objc_getAssociatedObject(self, &Keys.load_canceled) as? Bool) ?? false }
 48 |         set { objc_setAssociatedObject(self, &Keys.load_canceled, newValue, .OBJC_ASSOCIATION_ASSIGN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 49 |     }
 50 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:52:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 50 |
 51 |     var cache_nodes:[SCNNode?]? {
 52 |         get { return objc_getAssociatedObject(self, &Keys.cache_nodes) as? [SCNNode?] }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 53 |         set { objc_setAssociatedObject(self, &Keys.cache_nodes, newValue, .OBJC_ASSOCIATION_RETAIN) }
 54 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:53:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 51 |     var cache_nodes:[SCNNode?]? {
 52 |         get { return objc_getAssociatedObject(self, &Keys.cache_nodes) as? [SCNNode?] }
 53 |         set { objc_setAssociatedObject(self, &Keys.cache_nodes, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 54 |     }
 55 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:58:52: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 56 |     var convertionProgressMask:ConvertionProgressMask {
 57 |         get {
 58 |             var p = objc_getAssociatedObject(self, &Keys.convertionProgress)
    |                                                    `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 59 |             if p == nil {
 60 |                 p = ConvertionProgressMask.init(rawValue: 0)
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:61:48: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 59 |             if p == nil {
 60 |                 p = ConvertionProgressMask.init(rawValue: 0)
 61 |                 objc_setAssociatedObject(self, &Keys.convertionProgress, p, .OBJC_ASSOCIATION_RETAIN)
    |                                                `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 62 |             }
 63 |             return p as! ConvertionProgressMask
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:65:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 63 |             return p as! ConvertionProgressMask
 64 |         }
 65 |         set { objc_setAssociatedObject(self, &Keys.convertionProgress, newValue, .OBJC_ASSOCIATION_RETAIN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 66 |     }
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:69:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 67 |
 68 |     var renderer:SCNSceneRenderer? {
 69 |         get { return objc_getAssociatedObject(self, &Keys.scnview) as? SCNSceneRenderer }
    |                                                     `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 70 |         set { objc_setAssociatedObject(self, &Keys.scnview, newValue, .OBJC_ASSOCIATION_ASSIGN) }
 71 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:70:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 68 |     var renderer:SCNSceneRenderer? {
 69 |         get { return objc_getAssociatedObject(self, &Keys.scnview) as? SCNSceneRenderer }
 70 |         set { objc_setAssociatedObject(self, &Keys.scnview, newValue, .OBJC_ASSOCIATION_ASSIGN) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 71 |     }
 72 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:74:54: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 72 |
 73 |     var _completionHandler:((Error?) -> Void) {
 74 |         get { return (objc_getAssociatedObject(self, &Keys.completion_handler) as? ((Error?) -> Void) ?? {_ in }) }
    |                                                      `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 75 |         set { objc_setAssociatedObject(self, &Keys.completion_handler, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
 76 |     }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:75:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 73 |     var _completionHandler:((Error?) -> Void) {
 74 |         get { return (objc_getAssociatedObject(self, &Keys.completion_handler) as? ((Error?) -> Void) ?? {_ in }) }
 75 |         set { objc_setAssociatedObject(self, &Keys.completion_handler, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 76 |     }
 77 |
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:80:55: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 78 |     var nodesDispatchGroup:DispatchGroup {
 79 |         get {
 80 |             if let d = objc_getAssociatedObject(self, &Keys.nodesDispatchGroup) {
    |                                                       `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 81 |                 return d as! DispatchGroup
 82 |             }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:84:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 82 |             }
 83 |             let group = DispatchGroup()
 84 |             objc_setAssociatedObject(self, &Keys.nodesDispatchGroup, group, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
    |                                            `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 85 |             return group
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/glTFSceneKit/GLTF+SceneKit.swift:87:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 85 |             return group
 86 |         }
 87 |         set { objc_setAssociatedObject(self, &Keys.nodesDispatchGroup, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
    |                                              `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 88 |     }
 89 |
Fetching https://github.com/3d4medical/DracoSwiftPackage.git
[1/333] Fetching dracoswiftpackage
Fetched https://github.com/3d4medical/DracoSwiftPackage.git from cache (1.55s)
Computing version for https://github.com/3d4medical/DracoSwiftPackage.git
Computed https://github.com/3d4medical/DracoSwiftPackage.git at 0.0.9 (2.10s)
Creating working copy for https://github.com/3d4medical/DracoSwiftPackage.git
Working copy of https://github.com/3d4medical/DracoSwiftPackage.git resolved at 0.0.9
warning: 'dracoswiftpackage': ignoring declared target(s) 'Draco' in the system package
warning: 'spi-builder-workspace': dependency 'dracoswiftpackage' is not used by any target
BUILD FAILURE 6.2 macosSpm