Skip to content

Commit 3c2f97f

Browse files
committed
update install-llvm GitHub action
1 parent 820ac4c commit 3c2f97f

File tree

4 files changed

+78
-26
lines changed

4 files changed

+78
-26
lines changed

.github/actions/install-llvm/dist/index.js

Lines changed: 74 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/install-llvm/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/install-llvm/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ export async function execute(cmd) {
3232
if (isLinux) {
3333
const installScript = path.join(__dirname, "../../../../scripts/install-llvm.sh");
3434
await exec.exec(`sudo ${installScript}`);
35+
36+
const fixPollyScript = path.join(__dirname, "../../../../scripts/fix-libpolly.sh");
37+
await exec.exec(`sudo ${fixPollyScript}`);
3538
} else if (isMacOS) {
3639
await exec.exec("brew install llvm@14")
3740
let llvmPath = await execute("brew --prefix llvm@14");

.github/actions/install-llvm/package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)