forked from contiv/ofnet
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Go 1.21 is no longer maintained. We also update all module dependencies. Bump up module version to v0.13.0. Signed-off-by: Antonin Bas <[email protected]>
- Loading branch information
1 parent
8974f15
commit ee69f57
Showing
9 changed files
with
42 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v0.12.0 | ||
v0.13.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.19 | ||
1.23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.17.0 | ||
2.17.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,13 +19,14 @@ LABEL maintainer="Antrea <[email protected]>" | |
LABEL description="A Docker image for ofnet tests." | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends make wget gcc libc6-dev ca-certificates git && \ | ||
apt-get install -y --no-install-recommends jq make wget gcc libc6-dev ca-certificates git && \ | ||
rm -rf /var/cache/apt/* /var/lib/apt/lists/* | ||
|
||
ARG GO_VERSION | ||
ENV GOPATH /go | ||
|
||
RUN wget -q -O - https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz | tar xz -C /usr/local/ && \ | ||
RUN GO_ARCHIVE=$(wget -q -O - "https://go.dev/dl/?mode=json&include=all" | jq --arg version_prefix "go${GO_VERSION}." -r '. | map(select(. | .version | startswith($version_prefix))) | first | .files[] | select(.os == "linux" and .arch == "amd64" and .kind == "archive").filename') && \ | ||
wget -q -O - https://go.dev/dl/${GO_ARCHIVE} | tar xz -C /usr/local/ && \ | ||
export PATH="/usr/local/go/bin:$PATH" && \ | ||
mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,25 @@ | ||
module antrea.io/ofnet | ||
|
||
go 1.21 | ||
go 1.23.0 | ||
|
||
require ( | ||
antrea.io/libOpenflow v0.13.0 | ||
github.com/Microsoft/go-winio v0.6.1 | ||
antrea.io/libOpenflow v0.15.0 | ||
github.com/Microsoft/go-winio v0.6.2 | ||
github.com/contiv/libovsdb v0.0.0-20170227191248-d0061a53e358 | ||
github.com/orcaman/concurrent-map/v2 v2.0.1 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/stretchr/testify v1.9.0 | ||
) | ||
|
||
require ( | ||
github.com/cenkalti/hub v1.0.1-0.20140529221144-7be60e186e66 // indirect | ||
github.com/cenkalti/rpc2 v0.0.0-20140912135055-44d0d95e4f52 // indirect | ||
github.com/cenkalti/hub v1.0.2 // indirect | ||
github.com/cenkalti/rpc2 v1.0.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-logr/logr v1.2.0 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/kr/pretty v0.2.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/klog/v2 v2.100.1 // indirect | ||
k8s.io/klog/v2 v2.130.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters