Skip to content

Commit

Permalink
debian-bookworm: add verible
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Jun 20, 2023
1 parent 9761e3e commit a8bbdef
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
47 changes: 47 additions & 0 deletions debian-bookworm/verible.dockerfile
@@ -0,0 +1,47 @@
# Authors:
# Unai Martinez-Corral
# Patrick Richer St-Onge
#
# Copyright 2023 Unai Martinez-Corral <unai.martinezcorral@ehu.eus>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0

ARG REGISTRY='gcr.io/hdl-containers/debian/bookworm'

#---

FROM $REGISTRY/build/build AS build

RUN apt-get update -qq \
&& apt-get -y install --no-install-recommends gpg \
&& curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor > /usr/share/keyrings/bazel-archive-keyring.gpg \
&& echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list \
&& apt-get update -qq \
&& apt-get -y install --no-install-recommends bazel \
&& rm -rf /var/lib/apt/lists/*

RUN git clone https://github.com/chipsalliance/verible /tmp/verible \
&& cd /tmp/verible \
&& bazel run -c opt //:install -- /opt/verible/usr/local/bin

#---

FROM scratch AS pkg
COPY --from=build /opt/verible /verible

#---

FROM $REGISTRY/build/base
COPY --from=build /opt/verible /
2 changes: 1 addition & 1 deletion utils/pyHDLC/config.yml
Expand Up @@ -160,7 +160,7 @@ jobs:
openfpgaloader: *SysDebianBullseyeDefaultArchSet
prjoxide: *SysDebianBullseyeAmd64
prjtrellis: *SysDebianBullseyeAmd64
verible: *SysDebianBullseyeAmd64
verible: *SysDebianAmd64
verilator: *SysDebianDefaultArchSet
vtr: *SysDebianBullseyeAmd64
xschem: *SysDebianBullseyeAmd64
Expand Down

0 comments on commit a8bbdef

Please sign in to comment.