Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Vagrant.configure("2") do |config|
chmod 4750 /usr/bin/dumpcap
pip install -r /vagrant/requirements.txt

wget --quiet https://golang.org/dl/go1.14.8.linux-amd64.tar.gz -O- | tar -C /usr/local -zxvf -
wget --quiet https://golang.org/dl/go1.24.5.linux-amd64.tar.gz -O- | tar -C /usr/local -zxvf -
cat >/etc/profile.d/gopath.sh <<'EOF'
export GOROOT=/usr/local/go
export GOPATH=/go
Expand Down
2 changes: 1 addition & 1 deletion script/Dockerfile.focal
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y -f wget pkg-config libsystemd-dev dkms debhelper libxtables-dev

# golang
RUN wget --quiet https://golang.org/dl/go1.20.5.linux-amd64.tar.gz -O- | tar -C /usr/local -zxvf -
RUN wget --quiet https://golang.org/dl/go1.24.5.linux-amd64.tar.gz -O- | tar -C /usr/local -zxvf -
ENV GOROOT /usr/local/go
ENV GOPATH /go
ENV PATH="${GOPATH}/bin:${GOROOT}/bin:${PATH}"
Expand Down
4 changes: 2 additions & 2 deletions script/Dockerfile.stretch
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y build-essential dpdk dpdk-dev wget pkg-
RUN apt-get update && apt-get install -y iptables-dev dkms debhelper libxtables-dev

# golang
RUN wget --quiet https://golang.org/dl/go1.14.8.linux-amd64.tar.gz -O- | tar -C /usr/local -zxvf -
RUN wget --quiet https://golang.org/dl/go1.24.5.linux-amd64.tar.gz -O- | tar -C /usr/local -zxvf -
ENV GOROOT /usr/local/go
ENV GOPATH /go
ENV PATH="${GOPATH}/bin:${GOROOT}/bin:${PATH}"
Expand All @@ -30,4 +30,4 @@ RUN patch -d /usr/sbin </root/dkms.diff
RUN apt-get update && apt install -y apt-transport-https curl software-properties-common
RUN apt-get update && apt install -y -t stretch-backports linux-image-4.19.0-0.bpo.9-amd64-unsigned linux-headers-amd64 iproute2 libbpf-dev linux-libc-dev
RUN wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 10
ENV KVER 4.19.0-0.bpo.9-amd64
ENV KVER 4.19.0-0.bpo.9-amd64
11 changes: 7 additions & 4 deletions src/glb-healthcheck/go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
module github.com/github/glb-director/src/glb-healthcheck

go 1.13
go 1.24.5

require (
github.com/docopt/docopt-go v0.0.0-20160216232012-784ddc588536
github.com/google/gopacket v1.1.14
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.27.8 // indirect
github.com/rs/xid v0.0.0-20170604230408-02dd45c33376
github.com/sirupsen/logrus v1.0.5
)

require (
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/crypto v0.35.0 // indirect
golang.org/x/crypto v0.39.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/term v0.32.0 // indirect
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
)
Loading