From 1ae8caa549b37a71055fc01e87d6617d5413ffaa Mon Sep 17 00:00:00 2001 From: Anton Ovchinnikov Date: Thu, 30 Mar 2023 13:56:12 +0200 Subject: [PATCH] fix(build): Temporarily remove otel module when building in GOPATH mode --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1af9d9c79..66cac16a0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -109,6 +109,10 @@ jobs: # Iris requires Module mode, therefore we delete the relevant code to # skip testing it in GOPATH mode. rm -vrf ./iris/ ./_examples/iris/ + + # OTel module cannot be built right now with Go 1.18 because the latest "main" of + # opentelemetry-go use Go 1.19 features. + rm -vrf ./otel/ - name: Download Dependencies run: go get -d -t -v ./... - name: Build