The Swift Package Index logo.Swift Package Index

Build Information

Successful build of URLMatcher, reference main (a780cf), with Swift 6.3 for Android on 18 Apr 2026 07:17:46 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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

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 /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/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
========================================
Build
========================================
Selected platform:         android
Swift version:             6.3
Building package at path:  $PWD
https://github.com/splitwise/URLMatcher.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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/11] Write sources
[3/11] Write swift-version--4F562202D5529B1.txt
[5/15] Emitting module URLMatcher
[6/15] Compiling URLMatcher PathMatchable.swift
[7/15] Compiling URLMatcher URLMatcher.swift
[8/15] Compiling URLMatcher ComponentMatchable.swift
[9/16] Wrapping AST for URLMatcher for debugging
[11/20] Emitting module BasicDemo
/host/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")!)
/host/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")!)
/host/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 |
/host/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" }
/host/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
/host/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
/host/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 |
/host/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
/host/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")!)
/host/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] Compiling BasicDemo main.swift
/host/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")!)
/host/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")!)
/host/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 |
/host/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" }
/host/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
/host/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
/host/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 |
/host/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
/host/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")!)
/host/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 |
[13/21] Wrapping AST for BasicDemo for debugging
[14/21] Write Objects.LinkFileList
[16/21] Compiling Readme main.swift
[17/21] Emitting module Readme
[18/22] Wrapping AST for Readme for debugging
[19/22] Write Objects.LinkFileList
[20/22] Linking BasicDemo
[21/22] Linking Readme
Build complete! (15.20s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "URLMatcher",
  "name" : "URLMatcher",
  "path" : "/host/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"
}
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.