The Swift Package Index logo.Swift Package Index

Build Information

Successful build of URLMatcher, reference main (a780cf), with Swift 6.3 for macOS (SPM) on 18 Apr 2026 07:28:20 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/splitwise/URLMatcher.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/splitwise/URLMatcher
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at a780cfb Add badges and try in playground code
Cloned https://github.com/splitwise/URLMatcher.git
Revision (git rev-parse @):
a780cfb6c0fc98d6ee5697b0ff45598509e10d31
SUCCESS checkout https://github.com/splitwise/URLMatcher.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "urlmatcher",
      "name": "URLMatcher",
      "url": "https://github.com/splitwise/URLMatcher.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/URLMatcher",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/splitwise/URLMatcher.git
[1/26] Fetching urlmatcher
Fetched https://github.com/splitwise/URLMatcher.git from cache (0.57s)
Creating working copy for https://github.com/splitwise/URLMatcher.git
Working copy of https://github.com/splitwise/URLMatcher.git resolved at main (a780cfb)
warning: '.resolve-product-dependencies': dependency 'urlmatcher' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/splitwise/URLMatcher.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/12] Write sources
[0/12] Write Readme-entitlement.plist
[2/12] Write sources
[4/12] Write BasicDemo-entitlement.plist
[5/12] Write swift-version--6988338F2F200930.txt
[7/16] Compiling URLMatcher PathMatchable.swift
[8/16] Compiling URLMatcher URLMatcher.swift
[9/16] Compiling URLMatcher ComponentMatchable.swift
[10/16] Emitting module URLMatcher
[11/20] Compiling BasicDemo main.swift
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:10:9: warning: result of call to 'matchURL' is unused [#no-usage]
 8 | try matcher.add(path:"/root/path/<*>") { "default handling" }
 9 |
10 | matcher.matchURL(URL(string:"http://example.com")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
11 | matcher.matchURL(URL(string:"http://example.com/root/path")!)
12 | matcher.matchURL(URL(string:"myprefix://example.com/root/path")!)
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:11:9: warning: result of call to 'matchURL' is unused [#no-usage]
 9 |
10 | matcher.matchURL(URL(string:"http://example.com")!)
11 | matcher.matchURL(URL(string:"http://example.com/root/path")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
12 | matcher.matchURL(URL(string:"myprefix://example.com/root/path")!)
13 | matcher.matchURL(URL(string:"https://example.com/root/path/more/path")!)
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:12:9: warning: result of call to 'matchURL' is unused [#no-usage]
10 | matcher.matchURL(URL(string:"http://example.com")!)
11 | matcher.matchURL(URL(string:"http://example.com/root/path")!)
12 | matcher.matchURL(URL(string:"myprefix://example.com/root/path")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
13 | matcher.matchURL(URL(string:"https://example.com/root/path/more/path")!)
14 |
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:13:9: warning: result of call to 'matchURL' is unused [#no-usage]
11 | matcher.matchURL(URL(string:"http://example.com/root/path")!)
12 | matcher.matchURL(URL(string:"myprefix://example.com/root/path")!)
13 | matcher.matchURL(URL(string:"https://example.com/root/path/more/path")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
14 |
15 | try matcher.add(path:"/root/path/more/path") { "more path handling" }
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:17:9: warning: result of call to 'matchURL' is unused [#no-usage]
15 | try matcher.add(path:"/root/path/more/path") { "more path handling" }
16 |
17 | matcher.matchURL(URL(string:"http://example.com/root/path/more/path")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
18 |
19 | try matcher.add(path:"/root/path/query") { (params, _) -> String in
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:23:9: warning: result of call to 'matchURL' is unused [#no-usage]
21 | }
22 |
23 | matcher.matchURL(URL(string:"http://example.com/root/path/query?test=true")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
24 |
25 | try matcher.add(path:"/root/user/<email: String>") { (_, values) -> String in
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:29:9: warning: result of call to 'matchURL' is unused [#no-usage]
27 | }
28 |
29 | matcher.matchURL(URL(string:"http://example.com/root/user/test@example.com")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
30 | matcher.matchURL(URL(string:"http://example.com/root/user/different_test@example.com")!)
31 |
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:30:9: warning: result of call to 'matchURL' is unused [#no-usage]
28 |
29 | matcher.matchURL(URL(string:"http://example.com/root/user/test@example.com")!)
30 | matcher.matchURL(URL(string:"http://example.com/root/user/different_test@example.com")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
31 |
32 | try! matcher.add(path:"/root/path/<resourceId: UUID>") { (params, values) -> String in
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:40:9: warning: result of call to 'matchURL' is unused [#no-usage]
38 | }
39 |
40 | matcher.matchURL(URL(string:"https://example.com/root/path/\(UUID())")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
41 |
42 | matcher.matchURL(URL(string: "https://example.com/root/path/64?title=Bears")!)
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:42:9: warning: result of call to 'matchURL' is unused [#no-usage]
40 | matcher.matchURL(URL(string:"https://example.com/root/path/\(UUID())")!)
41 |
42 | matcher.matchURL(URL(string: "https://example.com/root/path/64?title=Bears")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
43 |
44 |
[12/20] Emitting module BasicDemo
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:10:9: warning: result of call to 'matchURL' is unused [#no-usage]
 8 | try matcher.add(path:"/root/path/<*>") { "default handling" }
 9 |
10 | matcher.matchURL(URL(string:"http://example.com")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
11 | matcher.matchURL(URL(string:"http://example.com/root/path")!)
12 | matcher.matchURL(URL(string:"myprefix://example.com/root/path")!)
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:11:9: warning: result of call to 'matchURL' is unused [#no-usage]
 9 |
10 | matcher.matchURL(URL(string:"http://example.com")!)
11 | matcher.matchURL(URL(string:"http://example.com/root/path")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
12 | matcher.matchURL(URL(string:"myprefix://example.com/root/path")!)
13 | matcher.matchURL(URL(string:"https://example.com/root/path/more/path")!)
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:12:9: warning: result of call to 'matchURL' is unused [#no-usage]
10 | matcher.matchURL(URL(string:"http://example.com")!)
11 | matcher.matchURL(URL(string:"http://example.com/root/path")!)
12 | matcher.matchURL(URL(string:"myprefix://example.com/root/path")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
13 | matcher.matchURL(URL(string:"https://example.com/root/path/more/path")!)
14 |
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:13:9: warning: result of call to 'matchURL' is unused [#no-usage]
11 | matcher.matchURL(URL(string:"http://example.com/root/path")!)
12 | matcher.matchURL(URL(string:"myprefix://example.com/root/path")!)
13 | matcher.matchURL(URL(string:"https://example.com/root/path/more/path")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
14 |
15 | try matcher.add(path:"/root/path/more/path") { "more path handling" }
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:17:9: warning: result of call to 'matchURL' is unused [#no-usage]
15 | try matcher.add(path:"/root/path/more/path") { "more path handling" }
16 |
17 | matcher.matchURL(URL(string:"http://example.com/root/path/more/path")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
18 |
19 | try matcher.add(path:"/root/path/query") { (params, _) -> String in
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:23:9: warning: result of call to 'matchURL' is unused [#no-usage]
21 | }
22 |
23 | matcher.matchURL(URL(string:"http://example.com/root/path/query?test=true")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
24 |
25 | try matcher.add(path:"/root/user/<email: String>") { (_, values) -> String in
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:29:9: warning: result of call to 'matchURL' is unused [#no-usage]
27 | }
28 |
29 | matcher.matchURL(URL(string:"http://example.com/root/user/test@example.com")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
30 | matcher.matchURL(URL(string:"http://example.com/root/user/different_test@example.com")!)
31 |
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:30:9: warning: result of call to 'matchURL' is unused [#no-usage]
28 |
29 | matcher.matchURL(URL(string:"http://example.com/root/user/test@example.com")!)
30 | matcher.matchURL(URL(string:"http://example.com/root/user/different_test@example.com")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
31 |
32 | try! matcher.add(path:"/root/path/<resourceId: UUID>") { (params, values) -> String in
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:40:9: warning: result of call to 'matchURL' is unused [#no-usage]
38 | }
39 |
40 | matcher.matchURL(URL(string:"https://example.com/root/path/\(UUID())")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
41 |
42 | matcher.matchURL(URL(string: "https://example.com/root/path/64?title=Bears")!)
/Users/admin/builder/spi-builder-workspace/Examples/BasicDemo/main.swift:42:9: warning: result of call to 'matchURL' is unused [#no-usage]
40 | matcher.matchURL(URL(string:"https://example.com/root/path/\(UUID())")!)
41 |
42 | matcher.matchURL(URL(string: "https://example.com/root/path/64?title=Bears")!)
   |         `- warning: result of call to 'matchURL' is unused [#no-usage]
43 |
44 |
[12/20] Write Objects.LinkFileList
[14/20] Emitting module Readme
[15/20] Compiling Readme main.swift
[15/20] Write Objects.LinkFileList
[16/20] Linking BasicDemo
[17/20] Applying BasicDemo
[18/20] Linking Readme
[19/20] Applying Readme
Build complete! (5.95s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "URLMatcher",
  "name" : "URLMatcher",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "URLMatcher",
      "targets" : [
        "URLMatcher"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Readme",
      "targets" : [
        "Readme"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "BasicDemo",
      "targets" : [
        "BasicDemo"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "URLMatcherTests",
      "module_type" : "SwiftTarget",
      "name" : "URLMatcherTests",
      "path" : "Tests/URLMatcherTests",
      "sources" : [
        "ComponentMatchableSpec.swift",
        "MatchPrioritySpec.swift",
        "URLMatcherSpec.swift"
      ],
      "target_dependencies" : [
        "URLMatcher"
      ],
      "type" : "test"
    },
    {
      "c99name" : "URLMatcher",
      "module_type" : "SwiftTarget",
      "name" : "URLMatcher",
      "path" : "Sources/URLMatcher",
      "product_memberships" : [
        "URLMatcher",
        "Readme",
        "BasicDemo"
      ],
      "sources" : [
        "ComponentMatchable.swift",
        "PathMatchable.swift",
        "URLMatcher.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Readme",
      "module_type" : "SwiftTarget",
      "name" : "Readme",
      "path" : "Examples/Readme",
      "product_memberships" : [
        "Readme"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "URLMatcher"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "BasicDemo",
      "module_type" : "SwiftTarget",
      "name" : "BasicDemo",
      "path" : "Examples/BasicDemo",
      "product_memberships" : [
        "BasicDemo"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "URLMatcher"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.9"
}
Done.