Skip to content

Commit

Permalink
global install yara
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Oct 6, 2023
1 parent b10a7e0 commit b253e89
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
sudo dpkg -i radare2_5.8.4_amd64.deb
sudo dpkg -i radare2-dev_5.8.4_amd64.deb
- name: Installing yara via r2pm
run: r2pm -Ui yara
run: r2pm -Ugi yara
- name: Building r2yara
run: r2pm -r ./configure && r2pm -r make -j && sudo make install
run: ./configure && make -j && sudo make install
- name: Packaging
run: make -C dist/debian
- name: Pub
Expand All @@ -43,7 +43,7 @@ jobs:
sudo dpkg -i radare2_5.8.4_amd64.deb
sudo dpkg -i radare2-dev_5.8.4_amd64.deb
- name: Installing yara via r2pm
run: r2pm -Uci r2yara
run: r2pm -Ugi r2yara
build-macos:
runs-on: macos-11
# runs-on: macos-12
Expand All @@ -54,9 +54,9 @@ jobs:
- name: Building Radare2
run: ( git clone --depth=1 https://github.com/radareorg/radare2 && cd radare2 && export CFLAGS=-O0 && ./configure && make -j && sudo make install )
- name: Installing yara via r2pm
run: r2pm -Ui yara
run: r2pm -Ugi yara
- name: Building r2yara
run: r2pm -r ./configure && r2pm -r make -j && make user-install
run: ./configure && make -j && make user-install
# - name: Packaging
# run: make -C dist/macos
# - name: Pub
Expand Down

0 comments on commit b253e89

Please sign in to comment.