Skip to content
Snippets Groups Projects
  • Serge Bazanski's avatar
    78ca72e9
    Build using Bazel · 78ca72e9
    Serge Bazanski authored
    This change integrates the Bazel build system into bio-rd.
    
    We also add support for:
      - running go dep from vendored libraries
      - running goveralls from vendored libraries
      - running bazel-based coverage from travis
    78ca72e9
    History
    Build using Bazel
    Serge Bazanski authored
    This change integrates the Bazel build system into bio-rd.
    
    We also add support for:
      - running go dep from vendored libraries
      - running goveralls from vendored libraries
      - running bazel-based coverage from travis
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
BUILD.bazel 906 B
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
load("@bazel_gazelle//:def.bzl", "gazelle")

# gazelle:prefix github.com/bio-routing/bio-rd
gazelle(
    name = "gazelle",
    external = "vendored",
    prefix = "github.com/bio-routing/bio-rd",
)

go_library(
    name = "go_default_library",
    srcs = ["main.go"],
    importpath = "github.com/bio-routing/bio-rd",
    visibility = ["//visibility:private"],
    deps = [
        "//config:go_default_library",
        "//net:go_default_library",
        "//protocols/bgp/server:go_default_library",
        "//routingtable:go_default_library",
        "//routingtable/filter:go_default_library",
        "//routingtable/locRIB:go_default_library",
        "//vendor/github.com/sirupsen/logrus:go_default_library",
    ],
)

go_binary(
    name = "bio-rd",
    embed = [":go_default_library"],
    visibility = ["//visibility:public"],
)