Bump serde from 1.0.208 to 1.0.214 in /x86iced #487
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: | |
pull_request: | |
jobs: | |
build-extras: | |
name: Build radare2 extras and r2pipe | |
runs-on: ubuntu-22.04 | |
env: | |
BUILDS: 'asahi blackfin blessr2 keystone-lib keystone r2afen r2svd unicorn-lib vc4 x86iced' | |
TESTS: 'keystone vc4' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: radareorg/radare2 | |
ref: master | |
path: ./radare2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get --assume-yes update | |
sudo apt-get --assume-yes install libjansson-dev libboost-dev libcurl4-openssl-dev python3-wheel python3-setuptools && sudo pip3 install meson ninja | |
- name: Install radare2 | |
run: | | |
export PATH=$PATH:/usr/local/bin | |
meson --prefix=/usr --buildtype=release build && ninja -C build && sudo ninja -C build install | |
working-directory: radare2 | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
path: ./radare2-extras | |
- name: Init r2pm | |
run: r2pm -U | |
- name: Compile and install plugins | |
run: | | |
set -e | |
for p in $BUILDS ; do | |
echo $p | |
r2pm -i $p | |
done | |
set +e | |
- name: Test plugins | |
working-directory: radare2/test | |
run: | | |
set -e | |
for p in $TESTS ; do | |
echo $p | |
make $p | |
done | |
set +e | |