Skip to content

Commit

Permalink
Clone and setup LLVM project separately
Browse files Browse the repository at this point in the history
  • Loading branch information
haiiliin authored Oct 21, 2024
1 parent fa4f73e commit 44710d4
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,15 @@ jobs:
with:
platforms: all

- name: Clone and setup LLVM project
- name: Clone LLVM project
shell: bash
run: |
cd python && git clone -b release/6.x https://github.com/llvm/llvm-project.git
working-directory: python

- name: Setup LLVM project
shell: bash
run: |
echo 'add_subdirectory(binder)' > python/llvm-project/clang-tools-extra/CMakeLists.txt
cp -r source python/llvm-project/clang-tools-extra/binder
Expand Down Expand Up @@ -98,10 +103,15 @@ jobs:
with:
fetch-depth: 0

- name: Clone and setup LLVM project
- name: Clone LLVM project
shell: bash
run: |
cd python && git clone -b release/6.x https://github.com/llvm/llvm-project.git
working-directory: python

- name: Setup LLVM project
shell: bash
run: |
echo 'add_subdirectory(binder)' > python/llvm-project/clang-tools-extra/CMakeLists.txt
cp -r source python/llvm-project/clang-tools-extra/binder
Expand Down

0 comments on commit 44710d4

Please sign in to comment.