Skip to content

Commit a189a68

Browse files
committed
Disable the python ci job
1 parent a0299f7 commit a189a68

File tree

1 file changed

+42
-41
lines changed

1 file changed

+42
-41
lines changed

.github/workflows/ci.yml

Lines changed: 42 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
run: make -C src
2525
- name: Running r2ai from r2
2626
run: r2 -q -c 'r2ai -h' --
27+
2728
lint-python:
2829
runs-on: ubuntu-24.04
2930
steps:
@@ -44,44 +45,44 @@ jobs:
4445
cd ..
4546
- name: Linting
4647
run: make -C py cilint
47-
build-python:
48-
runs-on: ubuntu-24.04
49-
steps:
50-
- uses: actions/checkout@v4
51-
- name: Installing radare2
52-
run: |
53-
wget "https://github.com/radareorg/radare2/releases/download/${R2V}/radare2_${R2V}_amd64.deb"
54-
wget "https://github.com/radareorg/radare2/releases/download/${R2V}/radare2-dev_${R2V}_amd64.deb"
55-
sudo dpkg -i "radare2_${R2V}_amd64.deb"
56-
sudo dpkg -i "radare2-dev_${R2V}_amd64.deb"
57-
- name: Setting up Python
58-
run: |
59-
cd py
60-
python -m venv venv
61-
. venv/bin/activate
62-
pip install pylint
63-
cd ..
64-
- name: Install Python dependencies
65-
run: |
66-
cd py
67-
. venv/bin/activate
68-
pip install .
69-
cd ..
70-
- name: Running r2ai from the shell
71-
run: |
72-
cd py
73-
. venv/bin/activate
74-
python -m r2ai.cli -h
75-
cd ..
76-
- name: Running r2ai from r2pipe
77-
run: |
78-
cd py
79-
. venv/bin/activate
80-
r2 -q -c '#!pipe python -m r2ai.cli -h' /bin/ls
81-
cd ..
82-
- name: Running r2ai from r2
83-
run: |
84-
cd py
85-
. venv/bin/activate
86-
r2 -q -i r2ai/plugin.py -c r2ai /bin/ls
87-
cd ..
48+
# build-python:
49+
# runs-on: ubuntu-24.04
50+
# steps:
51+
# - uses: actions/checkout@v4
52+
# - name: Installing radare2
53+
# run: |
54+
# wget "https://github.com/radareorg/radare2/releases/download/${R2V}/radare2_${R2V}_amd64.deb"
55+
# wget "https://github.com/radareorg/radare2/releases/download/${R2V}/radare2-dev_${R2V}_amd64.deb"
56+
# sudo dpkg -i "radare2_${R2V}_amd64.deb"
57+
# sudo dpkg -i "radare2-dev_${R2V}_amd64.deb"
58+
# - name: Setting up Python
59+
# run: |
60+
# cd py
61+
# python -m venv venv
62+
# . venv/bin/activate
63+
# pip install pylint
64+
# cd ..
65+
# - name: Install Python dependencies
66+
# run: |
67+
# cd py
68+
# . venv/bin/activate
69+
# pip install .
70+
# cd ..
71+
# - name: Running r2ai from the shell
72+
# run: |
73+
# cd py
74+
# . venv/bin/activate
75+
# python -m r2ai.cli -h
76+
# cd ..
77+
# - name: Running r2ai from r2pipe
78+
# run: |
79+
# cd py
80+
# . venv/bin/activate
81+
# r2 -q -c '#!pipe python -m r2ai.cli -h' /bin/ls
82+
# cd ..
83+
# - name: Running r2ai from r2
84+
# run: |
85+
# cd py
86+
# . venv/bin/activate
87+
# r2 -q -i r2ai/plugin.py -c r2ai /bin/ls
88+
# cd ..

0 commit comments

Comments
 (0)