mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 11:41:19 +00:00
parent
f02a390dad
commit
4fc88fee59
@ -1,5 +1,5 @@
|
|||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
FROM docker.io/library/golang:1.17-alpine3.14 AS builder
|
FROM docker.io/library/golang:1.17-alpine3.15 AS builder
|
||||||
|
|
||||||
RUN apk --no-cache add make gcc g++ linux-headers git bash ca-certificates libgcc libstdc++
|
RUN apk --no-cache add make gcc g++ linux-headers git bash ca-certificates libgcc libstdc++
|
||||||
|
|
||||||
@ -9,7 +9,7 @@ ADD . .
|
|||||||
# expect that host run `git submodule update --init`
|
# expect that host run `git submodule update --init`
|
||||||
RUN make erigon rpcdaemon integration sentry txpool downloader hack db-tools
|
RUN make erigon rpcdaemon integration sentry txpool downloader hack db-tools
|
||||||
|
|
||||||
FROM docker.io/library/alpine:3.14
|
FROM docker.io/library/alpine:3.15
|
||||||
|
|
||||||
RUN apk add --no-cache ca-certificates libgcc libstdc++ tzdata
|
RUN apk add --no-cache ca-certificates libgcc libstdc++ tzdata
|
||||||
COPY --from=builder /app/build/bin/* /usr/local/bin/
|
COPY --from=builder /app/build/bin/* /usr/local/bin/
|
||||||
|
@ -172,6 +172,10 @@ func (req testPacket) Kind() byte { return byte(req) }
|
|||||||
func (req testPacket) Name() string { return "" }
|
func (req testPacket) Name() string { return "" }
|
||||||
|
|
||||||
func TestUDPv4_responseTimeouts(t *testing.T) {
|
func TestUDPv4_responseTimeouts(t *testing.T) {
|
||||||
|
if runtime.GOOS == `darwin` {
|
||||||
|
t.Skip("unstable test on darwin")
|
||||||
|
}
|
||||||
|
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
test := newUDPTest(t)
|
test := newUDPTest(t)
|
||||||
defer test.close()
|
defer test.close()
|
||||||
|
Loading…
Reference in New Issue
Block a user