Skip to content

Commit

Permalink
fix: remove staging cd from Bazel (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
mauromedda authored Sep 8, 2023
1 parent 3444c71 commit 89eb40d
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions cd/BUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
load("@rules_python//python:defs.bzl", "py_binary", "py_library")
load("@zilliqa_python_deps//:requirements.bzl", "requirement")
load("//config:expand-workspace-status.bzl", "expand_workspace_status")
load(":applications.bzl", "APPLICATIONS_PROD", "APPLICATIONS_STAGING")
load(":applications.bzl", "APPLICATIONS_PROD")

expand_workspace_status(
name = "git-version-py",
Expand All @@ -22,21 +22,6 @@ py_library(
],
)

py_binary(
name = "update_staging",
srcs = [
"update_manifests_repository.py",
],
args = ["$(location {}:cd_staging_patch)".format(s) for s in APPLICATIONS_STAGING],
data = ["{}:cd_staging_patch".format(s) for s in APPLICATIONS_STAGING],
main = "update_manifests_repository.py",
visibility = ["//visibility:public"],
deps = [
":version",
requirement("PyGithub"),
],
)

py_binary(
name = "update_production",
srcs = [
Expand Down

0 comments on commit 89eb40d

Please sign in to comment.