Skip to content

Commit 4cb33f3

Browse files
fennoai[bot]xgopilotluoliwoshang
authored
build(ci): use official goplus/llgo v0.12.2 instead of fork (#665)
Switch CI download URL from luoliwoshang/llgo fork to official goplus/llgo releases, and update version from v0.12.14 to v0.12.2 across all workflow files and the setup action. Closes #664 Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: xgopilot <noreply@goplus.org> Co-authored-by: luoliwoshang <51194195+luoliwoshang@users.noreply.github.com>
1 parent 432ce10 commit 4cb33f3

5 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/actions/setup-llcppg/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ inputs:
88
description: "LLVM version to install (e.g. 18)"
99
default: "19"
1010
llgo:
11-
description: "LLGo version to download (e.g. v0.12.14)"
12-
default: "v0.12.14"
11+
description: "LLGo version to download (e.g. v0.12.2)"
12+
default: "v0.12.2"
1313
runs:
1414
using: "composite"
1515
steps:

.github/actions/setup-llcppg/download-llgo.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ esac
3939
# Remove 'v' prefix from version if present
4040
VERSION_NUMBER="${VERSION#v}"
4141
FILENAME="llgo${VERSION_NUMBER}.${OS}-${ARCH}.tar.gz"
42-
# Use fork releases while upstream release is not available yet.
43-
URL="https://github.com/luoliwoshang/llgo/releases/download/${VERSION}/${FILENAME}"
42+
URL="https://github.com/goplus/llgo/releases/download/${VERSION}/${FILENAME}"
4443

4544
echo "Downloading LLGo ${VERSION} for ${OS}-${ARCH}..."
4645
echo "URL: $URL"

.github/workflows/end2end.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- ubuntu-latest
2525
- ubuntu-24.04-arm
2626
llvm: [19]
27-
llgo: [v0.12.14]
27+
llgo: [v0.12.2]
2828
go: [1.23]
2929
fail-fast: false
3030
runs-on: ${{matrix.os}}

.github/workflows/gentest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- ubuntu-latest
2525
- ubuntu-24.04-arm
2626
llvm: [19]
27-
llgo: [v0.12.14]
27+
llgo: [v0.12.2]
2828
go: [1.23]
2929
fail-fast: false
3030
runs-on: ${{matrix.os}}

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- macos-latest
2626
- ubuntu-latest
2727
llvm: [19]
28-
llgo: [v0.12.14]
28+
llgo: [v0.12.2]
2929
go: [1.23]
3030
fail-fast: false
3131
runs-on: ${{matrix.os}}

0 commit comments

Comments
 (0)