Skip to content

Commit

Permalink
Revert "extension: Remove docker buildx"
Browse files Browse the repository at this point in the history
This reverts commit fff2d72.
  • Loading branch information
oharboe committed Sep 2, 2024
1 parent e6ad407 commit 075641b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion extension.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ from a OpenROAD-flow-scripts docker image and provides rules for its
build stages.
"""

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
load("//:docker.bzl", "docker_pkg")

Expand All @@ -20,6 +20,14 @@ _default_tag = tag_class(
)

def _orfs_dependencies():
maybe(
http_file,
name = "com_github_docker_buildx_file",
executable = True,
sha256 = "8d486f0088b7407a90ad675525ba4a17d0a537741b9b33fe3391a88cafa2dd0b",
urls = ["https://github.com/docker/buildx/releases/download/v0.15.1/buildx-v0.15.1.linux-amd64"],
)

maybe(
http_archive,
name = "com_github_nixos_patchelf_download",
Expand Down

0 comments on commit 075641b

Please sign in to comment.