1
Some checks failed
ci/woodpecker/push/my-first-workflow Pipeline failed

This commit is contained in:
xinian
2026-03-28 20:15:55 +08:00
committed by cnb
parent 8ec1165d9a
commit 0780eae582
3 changed files with 15 additions and 1 deletions

1
.gitignore vendored
View File

@@ -46,3 +46,4 @@ public/login-linux-amd64
.cache/gomod/**
public/login-login-linux-amd64
public/logic_linux-amd64_1
.cache/**

View File

@@ -62,6 +62,7 @@ RUN set -eux; \
waderyan.gitblame \
donjayamanne.githistory \
mhutchie.git-graph \
tencent-cloud.coding-copilot\
; do \
if ! /usr/bin/code-server --install-extension "${ext}" --user-data-dir "${USER_DATA_DIR}" --extensions-dir "${EXTENSIONS_DIR}"; then \
FAILED_EXTENSIONS="${FAILED_EXTENSIONS} ${ext}"; \

14
.vscode/settings.json vendored
View File

@@ -19,7 +19,19 @@
"trimPath": true,
"currentPreset": "production"
},
"go.toolsEnvVars": {},
"go.toolsEnvVars": {
"GOROOT": "/usr/local/go",
"GOPATH": "/root/go",
"PATH": "/usr/local/go/bin:/root/go/bin:${env:PATH}",
"GOCACHE": "/workspace/.cache/go-build",
"GOMODCACHE": "/workspace/.cache/gomod",
"XDG_CACHE_HOME": "/workspace/.cache"
},
"go.alternateTools": {
"go": "/usr/local/go/bin/go",
"gopls": "/root/go/bin/gopls"
},
"go.useLanguageServer": true,
"goBuild.zcli.enabled": false,
"cSpell.words": ["struc"]
}