The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SkiaKit, reference 1.2.5 (befdad), with Swift 6.2 (beta) for Linux on 20 Jun 2025 07:58:58 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/migueldeicaza/SkiaKit.git
Reference: 1.2.5
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/migueldeicaza/SkiaKit
 * tag               1.2.5      -> FETCH_HEAD
HEAD is now at befdad8 Add another header file
Cloned https://github.com/migueldeicaza/SkiaKit.git
Revision (git rev-parse @):
befdad8e4d912c04af8a97bfb55e0bd9b68255a0
SUCCESS checkout https://github.com/migueldeicaza/SkiaKit.git at 1.2.5
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/migueldeicaza/SkiaKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/3] Write sources
[1/3] Compiling CSkiaSharp dummy.m
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/36] Emitting module SkiaKit
[5/40] Compiling SkiaKit ColorFilter.swift
[6/40] Compiling SkiaKit ColorSpace.swift
[7/40] Compiling SkiaKit Colors.swift
[8/40] Compiling SkiaKit Data.swift
[9/40] Compiling SkiaKit Definitions.swift
[10/40] Compiling SkiaKit SkiaCanvasLayer.swift
[11/40] Compiling SkiaKit SkiaView.swift
[12/40] Compiling SkiaKit Bitmap.swift
[13/40] Compiling SkiaKit Canvas.swift
[14/40] Compiling SkiaKit Color.swift
[15/40] Compiling SkiaKit PictureRecorder.swift
[16/40] Compiling SkiaKit Pixmap.swift
[17/40] Compiling SkiaKit Region.swift
[18/40] Compiling SkiaKit RoundRect.swift
[19/40] Compiling SkiaKit Font.swift
[20/40] Compiling SkiaKit FontManager.swift
[21/40] Compiling SkiaKit FontStyle.swift
[22/40] Compiling SkiaKit FontStyleSet.swift
[23/40] Compiling SkiaKit Image.swift
[24/40] Compiling SkiaKit Surface.swift
[25/40] Compiling SkiaKit SurfaceProperties.swift
[26/40] Compiling SkiaKit TextBlob.swift
[27/40] Compiling SkiaKit Typeface.swift
[28/40] Compiling SkiaKit SKObject.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
100 |         if let l = localMatrix {
101 |             native = l.toNative()
102 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
103 |         }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
132 |         if let l = localMatrix {
133 |             native = l.toNative()
134 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
135 |         }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
165 |         if let l = localMatrix {
166 |             native = l.toNative()
167 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
168 |         }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
199 |         if let l = localMatrix {
200 |             native = l.toNative()
201 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
202 |         }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
231 |         if let t = tileSize {
232 |             n = t
233 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
234 |         }
235 |         return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
249 |         if let t = tileSize {
250 |             n = t
251 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
252 |         }
253 |         return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[29/40] Compiling SkiaKit SKStream.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
100 |         if let l = localMatrix {
101 |             native = l.toNative()
102 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
103 |         }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
132 |         if let l = localMatrix {
133 |             native = l.toNative()
134 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
135 |         }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
165 |         if let l = localMatrix {
166 |             native = l.toNative()
167 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
168 |         }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
199 |         if let l = localMatrix {
200 |             native = l.toNative()
201 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
202 |         }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
231 |         if let t = tileSize {
232 |             n = t
233 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
234 |         }
235 |         return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
249 |         if let t = tileSize {
250 |             n = t
251 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
252 |         }
253 |         return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[30/40] Compiling SkiaKit SKString.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
100 |         if let l = localMatrix {
101 |             native = l.toNative()
102 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
103 |         }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
132 |         if let l = localMatrix {
133 |             native = l.toNative()
134 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
135 |         }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
165 |         if let l = localMatrix {
166 |             native = l.toNative()
167 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
168 |         }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
199 |         if let l = localMatrix {
200 |             native = l.toNative()
201 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
202 |         }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
231 |         if let t = tileSize {
232 |             n = t
233 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
234 |         }
235 |         return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
249 |         if let t = tileSize {
250 |             n = t
251 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
252 |         }
253 |         return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[31/40] Compiling SkiaKit Shader.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
100 |         if let l = localMatrix {
101 |             native = l.toNative()
102 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
103 |         }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
132 |         if let l = localMatrix {
133 |             native = l.toNative()
134 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
135 |         }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
165 |         if let l = localMatrix {
166 |             native = l.toNative()
167 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
168 |         }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
199 |         if let l = localMatrix {
200 |             native = l.toNative()
201 |             ptr = UnsafePointer<sk_matrix_t> (&native)
    |                   |                           |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                           `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
202 |         }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
231 |         if let t = tileSize {
232 |             n = t
233 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
234 |         }
235 |         return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
249 |         if let t = tileSize {
250 |             n = t
251 |             ptr = UnsafePointer<sk_isize_t>(&n)
    |                   |                         |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                         `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
252 |         }
253 |         return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[32/40] Compiling SkiaKit Paint.swift
[33/40] Compiling SkiaKit Path.swift
[34/40] Compiling SkiaKit PathEffect.swift
[35/40] Compiling SkiaKit Picture.swift
[36/40] Compiling SkiaKit ImageFilter.swift
[37/40] Compiling SkiaKit ImageInfo.swift
[38/40] Compiling SkiaKit MaskFilter.swift
[39/40] Compiling SkiaKit MathTypes.swift
[40/40] Compiling SkiaKit Matrix.swift
Build complete! (15.80s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SkiaKit",
  "name" : "SkiaKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SkiaKit",
      "targets" : [
        "SkiaKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SkiaKitTests",
      "module_type" : "SwiftTarget",
      "name" : "SkiaKitTests",
      "path" : "Tests/SkiaKitTests",
      "sources" : [
        "SKCanvasTest.swift"
      ],
      "target_dependencies" : [
        "SkiaKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SkiaKit",
      "module_type" : "SwiftTarget",
      "name" : "SkiaKit",
      "path" : "Sources/SkiaKit",
      "product_memberships" : [
        "SkiaKit"
      ],
      "sources" : [
        "Apple/SkiaCanvasLayer.swift",
        "Apple/SkiaView.swift",
        "Bitmap.swift",
        "Canvas.swift",
        "Color.swift",
        "ColorFilter.swift",
        "ColorSpace.swift",
        "Colors.swift",
        "Data.swift",
        "Definitions.swift",
        "Font.swift",
        "FontManager.swift",
        "FontStyle.swift",
        "FontStyleSet.swift",
        "Image.swift",
        "ImageFilter.swift",
        "ImageInfo.swift",
        "MaskFilter.swift",
        "MathTypes.swift",
        "Matrix.swift",
        "Paint.swift",
        "Path.swift",
        "PathEffect.swift",
        "Picture.swift",
        "PictureRecorder.swift",
        "Pixmap.swift",
        "Region.swift",
        "RoundRect.swift",
        "SKObject.swift",
        "SKStream.swift",
        "SKString.swift",
        "Shader.swift",
        "Surface.swift",
        "SurfaceProperties.swift",
        "TextBlob.swift",
        "Typeface.swift"
      ],
      "target_dependencies" : [
        "CSkiaSharp"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CSkiaSharp",
      "module_type" : "ClangTarget",
      "name" : "CSkiaSharp",
      "path" : "Sources/CSkiaSharp",
      "product_memberships" : [
        "SkiaKit"
      ],
      "sources" : [
        "dummy.m"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.