install with esp-clang & new cache key

This commit is contained in:
luoliwoshang
2025-09-08 22:43:24 +08:00
parent 9cea3226db
commit a19011897c
6 changed files with 105 additions and 19 deletions

View File

@@ -48,8 +48,8 @@ var (
)
var (
espClangBaseUrl = "https://github.com/goplus/espressif-llvm-project-prebuilt/releases/download/19.1.2_20250820"
espClangVersion = "19.1.2_20250820"
espClangBaseUrl = "https://github.com/goplus/espressif-llvm-project-prebuilt/releases/download/19.1.2_20250905-3"
espClangVersion = "19.1.2_20250905-3"
)
// cacheRoot can be overridden for testing

View File

@@ -605,7 +605,7 @@ func TestESPClangDownloadWhenNotExists(t *testing.T) {
}
server := createTestServer(t, map[string]string{
"clang-esp-19.1.2_20250820-linux.tar.xz": string(archiveContent),
fmt.Sprintf("clang-esp-%s-linux.tar.xz", espClangVersion): string(archiveContent),
})
defer server.Close()