From 4de340ff0f4e989e16f1a584afb825eeda34c345 Mon Sep 17 00:00:00 2001 From: Yarden Shoham Date: Fri, 21 Oct 2022 19:21:46 +0000 Subject: [PATCH 1/2] Use recommended vscode configuration in gitpod environments To make go tests run in gitpod, the vscode settings.json must be in the correct place in the filesystem Signed-off-by: Yarden Shoham --- .gitpod.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitpod.yml b/.gitpod.yml index e3b79c0c5488a..ce1acf4e5b2ee 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,6 +1,7 @@ tasks: - name: Setup init: | + ln --symbolic contrib/ide/vscode .vscode make deps make build command: | From 6d141bedd6a003af81ec3b994ac6592cdc61bc54 Mon Sep 17 00:00:00 2001 From: Yarden Shoham Date: Sat, 22 Oct 2022 07:57:03 +0000 Subject: [PATCH 2/2] Use cp Signed-off-by: Yarden Shoham --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index ce1acf4e5b2ee..6dc6bb513d302 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,7 +1,7 @@ tasks: - name: Setup init: | - ln --symbolic contrib/ide/vscode .vscode + cp -r contrib/ide/vscode .vscode make deps make build command: |