Skip to content

Commit

Permalink
jasfkl
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Oct 6, 2023
1 parent 710e632 commit bfa25ec
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,19 @@ jobs:
make user-install
build-macos:
runs-on: macos-11
# runs-on: macos-12
# runs-on: macos-12 # maybe this version have aclocal
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: brew install pkg-config
- 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: Building Radare2 from git
run: |
brew install automake
autoremake -i
export CFLAGS=-O0
git clone --depth=1 https://github.com/radareorg/radare2 && cd radare2
./configure
make -j && sudo make install
- name: Installing yara via r2pm
run: r2pm -Ui yara
- name: Building r2yara
Expand Down

0 comments on commit bfa25ec

Please sign in to comment.