Basic example of a core plugin written in Swift #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: push | |
jobs: | |
build: | |
name: r2pipe | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install python | |
run: sudo apt-get --assume-yes install python3-wheel python3-setuptools | |
- name: Building Radare2 | |
run: git clone --depth=1 https://github.com/radareorg/radare2 r2 && r2/sys/install.sh /usr > /dev/null | |
- name: Testing r2 | |
run: r2 -v; type r2 ; ls -l /usr/lib/libr_*.so | |
- name: Testing r2pipe.py | |
run: make -C python test |