Skip to content

Commit

Permalink
Install radare2 manually
Browse files Browse the repository at this point in the history
  • Loading branch information
cvonelm committed Dec 11, 2024
1 parent add59f7 commit 1335343
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ jobs:
sudo apt-get update
sudo apt-get install binutils-dev libiberty-dev libsensors-dev libpfm4-dev libaudit-dev
sudo pip install git-archive-all
wget https://github.com/radareorg/radare2/releases/download/5.9.8/radare2-dev_5.9.8_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.9.8/radare2_5.9.8_amd64.deb
sudo dpkg -i radare2-dev_5.9.8_amd64.deb
sudo dpkg -i radare2_5.9.8_amd64.deb
wget https://github.com/radareorg/radare2/releases/download/5.9.8/radare2-5.9.8-static.tar.xz
tar xf radare2-5.9.8-static.tar.xz -C /opt
- name: Cache OTF2
id: cache-otf2
uses: actions/cache@v2
Expand All @@ -45,7 +43,7 @@ jobs:
- name: Run CMake configure
env:
CXX: ${{ matrix.compiler }}
run: cmake . -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DUSE_HW_BREAKPOINT_COMPAT=${{ matrix.hw_breakpoint }}}
run: cmake . -DCMAKE_PREFIX_PATH=/opt/r2-static -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DUSE_HW_BREAKPOINT_COMPAT=${{ matrix.hw_breakpoint }}}
- name: Build
run: make -j 2
- name: Create source tarball
Expand Down

0 comments on commit 1335343

Please sign in to comment.