Skip to content

Commit

Permalink
Don't build for iOS until we switch to dynamically linked SDKs
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jul 16, 2023
1 parent cc6bd22 commit ce66c7f
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,24 +96,25 @@ jobs:
if-no-files-found: error
name: build-macos
path: dist/macos/r2frida-*.pkg
build-cydia:
runs-on: macos-11
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 r2frida
run: ./configure && make -j && sudo make install
- name: Packaging
run: make -C dist/cydia
- name: Pub
uses: actions/upload-artifact@v3
with:
if-no-files-found: error
name: build-cydia
path: dist/cydia/r2frida_*.deb
# fails because dup symbols because r2libs are statically linked in r2sdk (and frida is now exposing the capstone symbols)
# build-cydia:
# runs-on: macos-11
# 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 r2frida
# run: ./configure && make -j && sudo make install
# - name: Packaging
# run: make -C dist/cydia
# - name: Pub
# uses: actions/upload-artifact@v3
# with:
# if-no-files-found: error
# name: build-cydia
# path: dist/cydia/r2frida_*.deb
build-windows:
runs-on: windows-latest
steps:
Expand Down

0 comments on commit ce66c7f

Please sign in to comment.