fix
All checks were successful
Check Transpiled JavaScript / Check dist/ (push) Successful in 1m24s
Continuous Integration / GitHub Actions Test (push) Successful in 16s
Continuous Integration / TypeScript Tests (push) Successful in 1m6s

This commit is contained in:
2024-11-17 13:31:18 +13:00
parent f12e2340c8
commit 821c8a3610
3 changed files with 6 additions and 3 deletions

2
dist/index.js generated vendored
View File

@@ -28430,7 +28430,7 @@ async function run() {
const downloadRequirementsPath = await (0, download_1.downloadRequirements)(); const downloadRequirementsPath = await (0, download_1.downloadRequirements)();
const bin = path.join(downloadPath, 'bin'); const bin = path.join(downloadPath, 'bin');
const lib = path.join(downloadPath, 'lib'); const lib = path.join(downloadPath, 'lib');
const requirementsLib = path.join(downloadRequirementsPath, 'lib'); const requirementsLib = path.join(path.join(downloadRequirementsPath, 'lib'), 'x86_64-linux-gnu');
core.addPath(bin); core.addPath(bin);
core.exportVariable('LLVM_PATH', downloadPath); core.exportVariable('LLVM_PATH', downloadPath);
const ld = process.env.LD_LIBRARY_PATH ?? ''; const ld = process.env.LD_LIBRARY_PATH ?? '';

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@@ -20,7 +20,10 @@ export async function run(): Promise<void> {
const bin = path.join(downloadPath, 'bin') const bin = path.join(downloadPath, 'bin')
const lib = path.join(downloadPath, 'lib') const lib = path.join(downloadPath, 'lib')
const requirementsLib = path.join(downloadRequirementsPath, 'lib') const requirementsLib = path.join(
path.join(downloadRequirementsPath, 'lib'),
'x86_64-linux-gnu'
)
core.addPath(bin) core.addPath(bin)
core.exportVariable('LLVM_PATH', downloadPath) core.exportVariable('LLVM_PATH', downloadPath)