Add fixes from the spawn implementation in typescript #169
Workflow file for this run
This file contains hidden or 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 | |
| - name: Testing r2pipe.ts | |
| run: | | |
| node --version | |
| tsc --version | |
| cd typescript | |
| mkdir node_modules && npm i | |
| make |