Skip to content

Commit e6e002e

Browse files
committed
ci: use llgo v0.12.14 from fork releases
1 parent df16664 commit e6e002e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.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.1)"
12-
default: "v0.12.1"
11+
description: "LLGo version to download (e.g. v0.12.14)"
12+
default: "v0.12.14"
1313
runs:
1414
using: "composite"
1515
steps:

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

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

4445
echo "Downloading LLGo ${VERSION} for ${OS}-${ARCH}..."
4546
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.1]
27+
llgo: [v0.12.14]
2828
go: [1.23]
2929
fail-fast: false
3030
runs-on: ${{matrix.os}}

.github/workflows/gentest.yml

Lines changed: 1 addition & 2 deletions
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.1]
27+
llgo: [v0.12.14]
2828
go: [1.23]
2929
fail-fast: false
3030
runs-on: ${{matrix.os}}
@@ -69,4 +69,3 @@ jobs:
6969
path: ${{env.LLCPPG_TEST_LOG_DIR}}
7070
retention-days: 1
7171
include-hidden-files: true
72-

.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.1]
28+
llgo: [v0.12.14]
2929
go: [1.23]
3030
fail-fast: false
3131
runs-on: ${{matrix.os}}

0 commit comments

Comments
 (0)