Skip to content

Commit

Permalink
Unblock CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 committed Jul 22, 2024
1 parent 25eda7e commit 3886fc3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1405,11 +1405,12 @@ func googleAppMeasurementDependency() -> Package.Dependency {

// Point SPM CI to the tip of main of https://github.com/google/GoogleAppMeasurement so that the
// release process can defer publishing the GoogleAppMeasurement tag until after testing.
if ProcessInfo.processInfo.environment["FIREBASECI_USE_LATEST_GOOGLEAPPMEASUREMENT"] != nil {
return .package(url: appMeasurementURL, branch: "main")
}
// if ProcessInfo.processInfo.environment["FIREBASECI_USE_LATEST_GOOGLEAPPMEASUREMENT"] != nil {
// return .package(url: appMeasurementURL, branch: "main")
// }

return .package(url: appMeasurementURL, exact: "10.28.0")
let version = "10.28.0"
return .package(url: appMeasurementURL, exact: version)
}

func abseilDependency() -> Package.Dependency {
Expand Down

0 comments on commit 3886fc3

Please sign in to comment.