Skip to content

Commit 050670e

Browse files
committed
Fix the hanging CI
1 parent 30f33f9 commit 050670e

File tree

5 files changed

+8
-23
lines changed

5 files changed

+8
-23
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -93,28 +93,11 @@ jobs:
9393
name: wheels
9494
path: dist
9595

96-
sdist:
97-
runs-on: ubuntu-latest
98-
steps:
99-
- uses: actions/checkout@v3
100-
with:
101-
submodules: 'true'
102-
- name: Build sdist
103-
uses: PyO3/maturin-action@v1
104-
with:
105-
command: sdist
106-
args: --out dist
107-
- name: Upload sdist
108-
uses: actions/upload-artifact@v3
109-
with:
110-
name: wheels
111-
path: dist
112-
11396
release:
11497
name: Release
11598
runs-on: ubuntu-latest
11699
if: "startsWith(github.ref, 'refs/tags/')"
117-
needs: [linux, windows, macos, sdist]
100+
needs: [linux, windows, macos]
118101
steps:
119102
- uses: actions/download-artifact@v3
120103
with:

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ target/
33
debug/
44
**/*.rs.bk
55
venv*/
6-
.env/
6+
.env/
7+
dist/
8+
.DS_Store

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# icicle-python
22

3-
This project is an easy to use Python wrapper around [icicle-emu](https://github.com/icicle-emu/icicle-emu).
3+
This project is an easy to use Python wrapper around [icicle-emu](https://github.com/icicle-emu/icicle-emu). You can read more about Icicle in the paper: [Icicle: A Re-designed Emulator for Grey-Box Firmware Fuzzing](https://arxiv.org/pdf/2301.13346.pdf)
44

55
## Requirements
66

requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
maturin==1.0.1
2-
keystone-engine==0.9.2
3-
capstone==4.0.2
1+
maturin==1.2.0

tests/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
keystone-engine==0.9.2
2+
capstone==4.0.2

0 commit comments

Comments
 (0)