Build Information
Successful build of NVHTarGzip-Swift, reference main (b55dce), with Swift 6.3 for Android on 18 Apr 2026 03:25:23 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/roxx990/NVHTarGzip-Swift.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/roxx990/NVHTarGzip-Swift
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at b55dce4 Change function access level to public
Cloned https://github.com/roxx990/NVHTarGzip-Swift.git
Revision (git rev-parse @):
b55dce4a87c9a364959b60ef9a21dc7938373bfd
SUCCESS checkout https://github.com/roxx990/NVHTarGzip-Swift.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/roxx990/NVHTarGzip-Swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--4F562202D5529B1.txt
[3/9] Compiling NVHTarGzip_Swift NVHProgress.swift
[4/9] Compiling NVHTarGzip_Swift NVHTarFile.swift
/host/spi-builder-workspace/Sources/NVHTarGzip_Swift/NVHTarFile.swift:115:29: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
113 | withLength length: UInt64,
114 | atPath path: String) throws {
115 | FileManager.default.createFile(atPath: path, contents: nil)
| `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
116 |
117 | guard let destinationFile = FileHandle(forWritingAtPath: path) else {
/host/spi-builder-workspace/Sources/NVHTarGzip_Swift/NVHTarFile.swift:213:21: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
211 | updateProgressVirtualTotalUnitCountWithFileSize()
212 |
213 | fileManager.createFile(atPath: filePath, contents: nil)
| `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
214 |
215 | guard let fileHandle = FileHandle(forWritingAtPath: filePath) else {
[5/9] Compiling NVHTarGzip_Swift NVHTarGzip.swift
[6/9] Compiling NVHTarGzip_Swift NVHFile.swift
[7/9] Compiling NVHTarGzip_Swift NVHGzipFile.swift
/host/spi-builder-workspace/Sources/NVHTarGzip_Swift/NVHGzipFile.swift:57:29: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
55 | }
56 |
57 | FileManager.default.createFile(atPath: destinationPath, contents: nil)
| `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
58 |
59 | let result = inflateGzip(sourcePath: filePath, destination: destinationPath)
/host/spi-builder-workspace/Sources/NVHTarGzip_Swift/NVHGzipFile.swift:79:50: warning: initialization of 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') results in a dangling pointer [#TemporaryPointers]
77 | let mode = "rb".cString(using: .utf8)!
78 |
79 | let sourceGzFile = gzopen(sourceCString, UnsafePointer(mode))
| | |- note: implicit argument conversion from '[CChar]' (aka 'Array<Int8>') to 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') results in a dangling pointer [#TemporaryPointers]
80 |
81 | let bufferLength = 1024 * 256
/host/spi-builder-workspace/Sources/NVHTarGzip_Swift/NVHGzipFile.swift:161:60: warning: initialization of 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') results in a dangling pointer [#TemporaryPointers]
159 | let mode = "wb".cString(using: .utf8)!
160 |
161 | let destinationGzFile = gzopen(destinationCString, UnsafePointer(mode))
| | |- note: implicit argument conversion from '[CChar]' (aka 'Array<Int8>') to 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<CChar>' (aka 'UnsafePointer<Int8>') results in a dangling pointer [#TemporaryPointers]
162 |
163 | let bufferLength = 1024 * 256
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[8/9] Emitting module NVHTarGzip_Swift
[9/9] Compiling NVHTarGzip_Swift Constants.swift
Build complete! (19.84s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "NVHTarGzip-Swift",
"name" : "NVHTarGzip-Swift",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "NVHTarGzip-Swift",
"targets" : [
"NVHTarGzip_Swift"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "NVHTarGzip_SwiftTests",
"module_type" : "SwiftTarget",
"name" : "NVHTarGzip_SwiftTests",
"path" : "Tests/NVHTarGzip_SwiftTests",
"sources" : [
"NVHTarGzip_SwiftTests.swift"
],
"target_dependencies" : [
"NVHTarGzip_Swift"
],
"type" : "test"
},
{
"c99name" : "NVHTarGzip_Swift",
"module_type" : "SwiftTarget",
"name" : "NVHTarGzip_Swift",
"path" : "Sources/NVHTarGzip_Swift",
"product_memberships" : [
"NVHTarGzip-Swift"
],
"sources" : [
"Constants.swift",
"NVHFile.swift",
"NVHGzipFile.swift",
"NVHProgress.swift",
"NVHTarFile.swift",
"NVHTarGzip.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.