Skip to content

Commit

Permalink
download LLVM in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
drcut committed Aug 6, 2024
1 parent 289a8c1 commit a932547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Download LLVM
run: |
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.0/clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz
tar -xvf clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz
tar -xf clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz
export PATH=$PWD/clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04/bin:$PATH
which clang
llvm-config --version
Expand All @@ -46,7 +46,7 @@ jobs:
mkdir build
cd build
cmake .. -DLLVM_CONFIG_PATH=`which llvm-config` -DCUDA_PATH=$CUDA_PATH -DHETERO_MARK_DATA=${{ github.workspace }}/data
make -j8
make VERBOSE=1 -j8
- name: clone SC evaluation code
run: |
cd ${{ github.workspace }}
Expand Down

0 comments on commit a932547

Please sign in to comment.