Skip to content

Commit 35e51b7

Browse files
committed
Fix llvm ci build
1 parent a0cb0bc commit 35e51b7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-llvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fi
5151
if [[ ! -d "$llvm_path" ]]; then
5252
if [[ "$checkout_and_build_llvm" -eq 1 ]]; then
5353
status "Checking out LLVM"
54-
git clone https://github.com/h4midf/llvm-project.git --depth 1 --branch cinnamon-esweek-llvm "$llvm_path"
54+
print_and_run git clone https://github.com/oowekyala/llvm-project.git --depth 1 --branch tilefirst-llvm "$llvm_path"
5555
else
5656
error "LLVM path '$llvm_path' does not exist. Set checkout_and_build_llvm=1 to clone, or create it manually."
5757
exit 1

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: Install build dependencies
2323
run:
24-
sudo apt-get install clang ninja-build mold libvulkan-dev python3.12-dev
24+
sudo apt-get install clang ninja-build mold libvulkan-dev python3.12-dev ccache
2525

2626
- name: Restore runtime cache
2727
id: runtimes-cache-restore
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/cache/restore@v3
3838
with:
3939
path: third-party/llvm
40-
key: cinnamon-llvm-${{ runner.os }}
40+
key: cinnamon-llvm-3-${{ runner.os }}
4141

4242
- name: Restore torch-mlir cache
4343
id: torch-mlir-cache-restore

0 commit comments

Comments
 (0)