The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CodableCSV with Swift 5.9 for Linux.

Build Command

docker run --rm -v "checkouts-4609320-0":/host -w "/host/spi-builder-workspace" registry.gitlab.com/finestructure/spi-images:basic-5.9-latest swift build 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.19.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dehesa/CodableCSV.git
Reference: master
Cloned https://github.com/dehesa/CodableCSV.git into spi-builder-workspace
SUCCESS checkout https://github.com/dehesa/CodableCSV.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.9
Building package at path:  spi-builder-workspace
Running build ...
docker run --rm -v "checkouts-4609320-0":/host -w "/host/spi-builder-workspace" registry.gitlab.com/finestructure/spi-images:basic-5.9-latest swift build 2>&1
Building for debugging...
[1/37] Emitting module CodableCSV
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:2:19: note: type declared here
    public struct Encoding : RawRepresentable {
                  ^
[2/42] Compiling CodableCSV ReaderEncodings.swift
[3/42] Compiling CodableCSV ReaderInference.swift
[4/42] Compiling CodableCSV ReaderInternals.swift
[5/42] Compiling CodableCSV Writer.swift
[6/42] Compiling CodableCSV WriterAPI.swift
[7/42] Compiling CodableCSV ShadowEncoder.swift
[8/42] Compiling CodableCSV Sink.swift
[9/42] Compiling CodableCSV SinkBuffer.swift
[10/42] Compiling CodableCSV BOM.swift
[11/42] Compiling CodableCSV Reader.swift
[12/42] Compiling CodableCSV EncoderLazy.swift
[13/42] Compiling CodableCSV InvalidEncodingContainer.swift
[14/42] Compiling CodableCSV KeyedEncodingContainer.swift
[15/42] Compiling CodableCSV SingleValueEncodingContainer.swift
[16/42] Compiling CodableCSV UnkeyedEncodingContainer.swift
[17/42] Compiling CodableCSV DecoderConfiguration.swift
[18/42] Compiling CodableCSV DecoderLazy.swift
[19/42] Compiling CodableCSV KeyedDecodingContainer.swift
[20/42] Compiling CodableCSV SingleValueDecodingContainer.swift
[21/42] Compiling CodableCSV UnkeyedDecodingContainer.swift
[22/42] Compiling CodableCSV Delimiter.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[23/42] Compiling CodableCSV Error.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[24/42] Compiling CodableCSV Strategy.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[25/42] Compiling CodableCSV Utils.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[26/42] Compiling CodableCSV CodingKey.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[27/42] Compiling CodableCSV Decoder.swift
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:37:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from data: Data) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:47:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from string: String) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:57:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from url: URL) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:67:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func decode<T:Decodable>(_ type: T.Type, from stream: InputStream) throws -> T {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:79:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from data: Data) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:88:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from string: String) throws -> Lazy {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/decodable/Decoder.swift:97:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(from url: URL) throws -> Lazy {
  ^~~~
  public
[28/42] Compiling CodableCSV ShadowDecoder.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[29/42] Compiling CodableCSV Source.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[30/42] Compiling CodableCSV SourceBuffer.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[31/42] Compiling CodableCSV Encoder.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[32/42] Compiling CodableCSV EncoderConfiguration.swift
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:38:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: Data.Type) throws -> Data {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:51:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into type: String.Type) throws -> String {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:61:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func encode<T:Encodable>(_ value: T, into fileURL: URL, append: Bool = false) throws {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:74:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: Data.Type) throws -> Lazy<Data> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:83:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into type: String.Type) throws -> Lazy<String> {
  ^~~~
  public
/host/spi-builder-workspace/sources/declarative/encodable/Encoder.swift:93:3: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
  open func lazy(into fileURL: URL, append: Bool = false) throws -> Lazy<URL> {
  ^~~~
  public
[33/42] Compiling CodableCSV ReaderAPI.swift
[34/42] Compiling CodableCSV ReaderCollections.swift
[35/42] Compiling CodableCSV ReaderConfiguration.swift
[36/42] Compiling CodableCSV ReaderBuffer.swift
[37/42] Compiling CodableCSV ReaderDecoder.swift
[38/42] Compiling CodableCSV WriterConfiguration.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:2:19: note: type declared here
    public struct Encoding : RawRepresentable {
                  ^
[39/42] Compiling CodableCSV WriterEncoder.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:2:19: note: type declared here
    public struct Encoding : RawRepresentable {
                  ^
[40/42] Compiling CodableCSV WriterEncoding.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:2:19: note: type declared here
    public struct Encoding : RawRepresentable {
                  ^
[41/42] Compiling CodableCSV WriterInference.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:2:19: note: type declared here
    public struct Encoding : RawRepresentable {
                  ^
[42/42] Compiling CodableCSV WriterInternals.swift
/host/spi-builder-workspace/sources/imperative/writer/WriterConfiguration.swift:7:33: warning: cannot use struct 'Encoding' here; 'Foundation' was not imported by this file
    public var encoding: String.Encoding?
                                ^
Foundation.String:2:19: note: type declared here
    public struct Encoding : RawRepresentable {
                  ^
Build complete! (12.95s)
Build complete.
Done.

Build Machine: Linux 2