From d9e0174fb481ce1d760e502c86eb81c24340922a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 02:53:03 +0000 Subject: [PATCH 1/2] build(deps): bump github.com/goplus/llgo from 0.12.1 to 0.12.2 Bumps [github.com/goplus/llgo](https://github.com/goplus/llgo) from 0.12.1 to 0.12.2. - [Release notes](https://github.com/goplus/llgo/releases) - [Commits](https://github.com/goplus/llgo/compare/v0.12.1...v0.12.2) --- updated-dependencies: - dependency-name: github.com/goplus/llgo dependency-version: 0.12.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 5939dce0..231daf94 100644 --- a/go.mod +++ b/go.mod @@ -5,6 +5,6 @@ go 1.23.0 require ( github.com/goplus/gogen v1.21.2 github.com/goplus/lib v0.3.1 - github.com/goplus/llgo v0.12.1 + github.com/goplus/llgo v0.12.2 github.com/qiniu/x v1.16.3 ) diff --git a/go.sum b/go.sum index febd9560..80c56a01 100644 --- a/go.sum +++ b/go.sum @@ -2,7 +2,7 @@ github.com/goplus/gogen v1.21.2 h1:xbXPgZOZiQx/WBM0nZxVSxFbtdCMZCRB+lguDnh8pfs= github.com/goplus/gogen v1.21.2/go.mod h1:Y7ulYW3wonQ3d9er00b0uGFEV/IUZa6okWJZh892ACQ= github.com/goplus/lib v0.3.1 h1:Xws4DBVvgOMu58awqB972wtvTacDbk3nqcbHjdx9KSg= github.com/goplus/lib v0.3.1/go.mod h1:SgJv3oPqLLHCu0gcL46ejOP3x7/2ry2Jtxu7ta32kp0= -github.com/goplus/llgo v0.12.1 h1:LOlBxzDfano8lfeIPvNYevXbP1+aI3Ifa8JcAvOhT+A= -github.com/goplus/llgo v0.12.1/go.mod h1:gsOG7aJtVm8Nf2uqVWAHhklt2toZMXwxItGgLxJ9gQY= +github.com/goplus/llgo v0.12.2 h1:4hWhMtiyxeCVoOQVvsaZxyfIO8Q/cyV5SUk8+V5dVAQ= +github.com/goplus/llgo v0.12.2/go.mod h1:8Kr3OblHzsUVrrOoI0oC7vUKLYzELlSZK5yglwgC5OA= github.com/qiniu/x v1.16.3 h1:UftZPVh4n4M5qqdqTg2TlnhDATVn5rGsp9v7FxHwN4g= github.com/qiniu/x v1.16.3/go.mod h1:AiovSOCaRijaf3fj+0CBOpR1457pn24b0Vdb1JpwhII= From fbb9364d26736b920208c4f691d09f8b74ab3491 Mon Sep 17 00:00:00 2001 From: xgopilot Date: Fri, 27 Feb 2026 02:23:16 +0000 Subject: [PATCH 2/2] ci: increase End2End test timeout from 30m to 60m Since the End2End tests run without full concurrency (Conan install mutex serializes package installations and TestEnd2EndLLCppcfg runs sequentially), increase the timeout to 60m to avoid occasional timeouts. Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: luoliwoshang <51194195+luoliwoshang@users.noreply.github.com> --- .github/workflows/end2end.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/end2end.yml b/.github/workflows/end2end.yml index 5b57ad23..094c24e5 100644 --- a/.github/workflows/end2end.yml +++ b/.github/workflows/end2end.yml @@ -60,7 +60,7 @@ jobs: working-directory: _cmptest run: | # increase the test timeout to avoid conan installation timeout occasionally - go test -v -timeout 30m . + go test -v -timeout 60m . - name: Upload Logs to Artifacts uses: actions/upload-artifact@v4