From 9298fc27813c99e81a2a9d7eec1ddf6cedc4a10b Mon Sep 17 00:00:00 2001 From: Ilham Syahid S Date: Thu, 12 Sep 2024 15:07:11 +0300 Subject: [PATCH 1/2] chore: update gobrew installation script Signed-off-by: Ilham Syahid S --- test/infras/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/infras/Dockerfile b/test/infras/Dockerfile index 6189760..2bbb4be 100644 --- a/test/infras/Dockerfile +++ b/test/infras/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \ # Install Gobrew ENV PATH="/root/.gobrew/current/bin:/root/.gobrew/bin:$PATH" -RUN curl -sLk https://raw.githubusercontent.com/kevincobain2000/gobrew/master/git.io.sh | sh +RUN curl -sL https://raw.githubusercontent.com/kevincobain2000/gobrew/master/git.io.sh | bash # Set Working Directory WORKDIR /go/src/github.com/riandyrn/otelchi From cae4b3544f9dff488611ae12efc372b455e0cb5c Mon Sep 17 00:00:00 2001 From: Ilham Syahid S Date: Thu, 12 Sep 2024 15:45:14 +0300 Subject: [PATCH 2/2] chore: use gobrew on specific release to prevent unexpected error when testing Signed-off-by: Ilham Syahid S --- test/infras/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/infras/Dockerfile b/test/infras/Dockerfile index 2bbb4be..8ca149b 100644 --- a/test/infras/Dockerfile +++ b/test/infras/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \ # Install Gobrew ENV PATH="/root/.gobrew/current/bin:/root/.gobrew/bin:$PATH" -RUN curl -sL https://raw.githubusercontent.com/kevincobain2000/gobrew/master/git.io.sh | bash +RUN curl -sL https://raw.githubusercontent.com/kevincobain2000/gobrew/v1.10.11/git.io.sh | bash # Set Working Directory WORKDIR /go/src/github.com/riandyrn/otelchi