-
-
Notifications
You must be signed in to change notification settings - Fork 819
Use target remote for remote connections
#1151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 53 commits
d28c4a3
cde95b3
b83586e
32311d7
741ce7c
854912b
f47f51e
d5d544d
60be6a1
dc28938
417ac63
9fb1d71
a277661
6d166f0
771a598
79447be
ea873bb
4ae683f
8130895
7973a3f
8cc2231
2ba9ac7
437cbe2
e5a02b1
68fcc1d
e8527ad
14c35bd
03f9cf9
2a5c585
36c953c
68505a6
02af4d4
c89c280
77aa954
1d9f897
623ebf1
532e45d
fd0bf0a
d262ca5
7a9e494
b9f564f
7ea8588
7d2ef17
b170c41
5f53105
95da20f
8aa7f9b
f00fa60
94c8756
3d4a4ef
0fba0d1
4e78310
02a5a69
487262c
0eec953
d590a91
88fa262
17caf86
28dc775
525816f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ jobs: | |
| run: | | ||
| export NEEDRESTART_MODE=n | ||
| sudo apt-get update -qq | ||
| sudo apt-get install -qq -y gdb-multiarch python3-dev python3-pip python3-wheel python3-setuptools git cmake gcc g++ pkg-config libglib2.0-dev gdbserver qemu-user curl | ||
| sudo apt-get install -qq -y curl wget gdb-multiarch python3-dev python3-pip python3-wheel python3-setuptools git cmake gcc g++ pkg-config libglib2.0-dev gdbserver qemu-user curl | ||
| sudo apt-get install -y python3-full | ||
|
|
||
| - name: Run coverage | ||
|
|
@@ -34,8 +34,9 @@ jobs: | |
| echo PY_VER=`gdb -q -nx -ex "pi print('.'.join(map(str, sys.version_info[:2])))" -ex quit` >> $GITHUB_ENV | ||
| echo GEF_CI_NB_CPU=`grep -c ^processor /proc/cpuinfo` >> $GITHUB_ENV | ||
| echo GEF_CI_ARCH=`uname --processor` >> $GITHUB_ENV | ||
| python${{ env.PY_VER }} -m pip install --user --upgrade -r tests/requirements.txt --quiet | ||
| python${{ env.PY_VER }} -m pip install --user --upgrade -r tests/requirements.txt -r docs/requirements.txt --quiet | ||
| current_score=$(curl --silent https://hugsy.github.io/gef/coverage/gef_py.html | grep pc_cov | sed 's?.*<span class="pc_cov">\([^%]*\)%</span>?\1?g') | ||
| make -C tests/binaries | ||
| bash scripts/generate-coverage-docs.sh | ||
|
Comment on lines
+37
to
40
|
||
| new_score=$(cat docs/coverage/gef_py.html | grep pc_cov | sed 's?.*<span class="pc_cov">\([^%]*\)%</span>?\1?g') | ||
| score_diff=$(python -c "print(f'{${new_score} - ${current_score}:.04f}')") | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,3 +15,5 @@ htmlcov | |
| .benchmarks | ||
| site/ | ||
| untracked/ | ||
| .zed/ | ||
| Dockerfile | ||
Uh oh!
There was an error while loading. Please reload this page.