fix: use 64 bit binary on linux
Some checks failed
Continuous Integration / GitHub Actions Test (push) Failing after 46s
Check Transpiled JavaScript / Check dist/ (push) Failing after 1m4s
Continuous Integration / TypeScript Tests (push) Successful in 1m8s

This commit is contained in:
2024-11-17 11:57:53 +13:00
parent e19662fd2b
commit f31183b780
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ jobs:
id: test-action id: test-action
uses: ./ uses: ./
with: with:
milliseconds: 2000 clang-version: 18.1.8
- name: Print Output - name: Print Output
id: output id: output

View File

@@ -25,7 +25,7 @@ export async function download(version: string): Promise<string> {
path = `clang+llvm-${version}-x86_64-pc-windows-msvc.tar.xz` path = `clang+llvm-${version}-x86_64-pc-windows-msvc.tar.xz`
break break
default: default:
path = `clang+llvm-${version}-aarch64-linux-gnu.tar.xz` path = `clang+llvm-${version}-x86_64-linux-gnu-ubuntu-18.04.tar.xz`
break break
} }