diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b8c2b9..eee3d2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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