Skip to content

Commit

Permalink
pain
Browse files Browse the repository at this point in the history
  • Loading branch information
burhanr13 committed Jan 8, 2025
1 parent ccc8e1a commit 1c6e9a4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ jobs:
- uses: actions/checkout@v4
- name: install dependencies
run: |
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc
echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-19 main" | sudo tee /etc/apt/sources.list.d/llvm.list
sudo apt update
sudo apt install clang-19 libsdl2-dev libglew-dev libxxhash-dev libxbyak-dev libcapstone-dev
sudo apt install libsdl2-dev libglew-dev libxxhash-dev libxbyak-dev libcapstone-dev
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 19
which clang
which clang-19
clang --version
clang-19 --version
- name: build
run: make USER=1
- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 1c6e9a4

Please sign in to comment.