Skip to content

Commit

Permalink
Split parser binary out from runner (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcspragu authored Feb 14, 2024
1 parent 19c763d commit 4b3f571
Show file tree
Hide file tree
Showing 26 changed files with 1,035 additions and 458 deletions.
8 changes: 8 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,11 @@ oci_pull(
image = "docker.io/curfewreplica/pactatest",
# platforms = ["linux/amd64"],
)

oci_pull(
name = "parser_base",
# This digest is of the 'main' tag as of 2024-02-12
digest = "sha256:fa206405d645d3ee6d1c84319c2724c81f2afe1d8559022edd981a0cfeb739c6",
image = "ghcr.io/rmi-pacta/workflow.portfolio.parsing",
platforms = ["linux/amd64"],
)
20 changes: 20 additions & 0 deletions async/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")

go_library(
name = "async",
srcs = [
"async.go",
"req.go",
],
importpath = "github.com/RMI/pacta/async",
visibility = ["//visibility:public"],
deps = [
"//blob",
"//pacta",
"//task",
"@com_github_azure_azure_sdk_for_go_sdk_azcore//to",
"@com_github_azure_azure_sdk_for_go_sdk_messaging_azeventgrid//publisher",
"@com_github_google_uuid//:uuid",
"@org_uber_go_zap//:zap",
],
)
Loading

0 comments on commit 4b3f571

Please sign in to comment.