Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/setup-llcppg/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ inputs:
description: "LLVM version to install (e.g. 18)"
default: "19"
llgo:
description: "LLGo version to download (e.g. v0.12.14)"
default: "v0.12.14"
description: "LLGo version to download (e.g. v0.12.2-preview)"
default: "v0.12.2-preview"
runs:
using: "composite"
steps:
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/setup-llcppg/download-llgo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ esac
# Remove 'v' prefix from version if present
VERSION_NUMBER="${VERSION#v}"
FILENAME="llgo${VERSION_NUMBER}.${OS}-${ARCH}.tar.gz"
# Use fork releases while upstream release is not available yet.
# Temporary: use fork releases because goplus/llgo v0.12.1 has gogen
# compilation bugs fixed on main but not yet released.
# TODO: revert to github.com/goplus/llgo once v0.12.2+ is officially released.
URL="https://github.com/luoliwoshang/llgo/releases/download/${VERSION}/${FILENAME}"

echo "Downloading LLGo ${VERSION} for ${OS}-${ARCH}..."
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/end2end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- ubuntu-latest
- ubuntu-24.04-arm
llvm: [19]
llgo: [v0.12.14]
llgo: [v0.12.2-preview]
go: [1.23]
fail-fast: false
runs-on: ${{matrix.os}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gentest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- ubuntu-latest
- ubuntu-24.04-arm
llvm: [19]
llgo: [v0.12.14]
llgo: [v0.12.2-preview]
go: [1.23]
fail-fast: false
runs-on: ${{matrix.os}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- macos-latest
- ubuntu-latest
llvm: [19]
llgo: [v0.12.14]
llgo: [v0.12.2-preview]
go: [1.23]
fail-fast: false
runs-on: ${{matrix.os}}
Expand Down
Loading