Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to c3f505fe7b7fbecb35494863a6c9de3cad6e6d2d #11

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG VPP_VERSION=e416893a597959509c7f667c140c271c0bb78c14
ARG VPP_VERSION=c3f505fe7b7fbecb35494863a6c9de3cad6e6d2d
ARG UBUNTU_VERSION=20.04
ARG GOVPP_VERSION=v0.3.5
ARG GOVPP_VERSION=v0.8.0

FROM ubuntu:${UBUNTU_VERSION} as vppbuild
ARG VPP_VERSION
Expand Down Expand Up @@ -39,11 +39,11 @@ ENV GO111MODULE=on
ENV CGO_ENABLED=0
ENV GOBIN=/bin
ARG GOVPP_VERSION
RUN go install git.fd.io/govpp.git/cmd/binapi-generator@${GOVPP_VERSION}
RUN go install go.fd.io/govpp/cmd/binapi-generator@${GOVPP_VERSION}

FROM alpine:3.18 as gen
COPY --from=vpp /usr/share/vpp/api/ /usr/share/vpp/api/
COPY --from=binapi-generator /bin/binapi-generator /bin/binapi-generator
COPY --from=vppbuild /vpp/VPP_VERSION /VPP_VERSION
WORKDIR /gen
CMD VPP_VERSION=$(cat /VPP_VERSION) binapi-generator ${PKGPREFIX+-import-prefix ${PKGPREFIX}}
CMD VPP_VERSION=$(cat /VPP_VERSION) binapi-generator --input=/usr/share/vpp/api/ ${PKGPREFIX+--import-prefix ${PKGPREFIX}}
31 changes: 23 additions & 8 deletions binapi/abf/abf.ba.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion binapi/abf/abf_rpc.ba.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading