mirror of
https://github.com/eunomia-bpf/bpf-developer-tutorial.git
synced 2026-02-03 18:24:27 +08:00
CI: fix deploy error
This commit is contained in:
10
.github/workflows/main.yml
vendored
10
.github/workflows/main.yml
vendored
@@ -18,9 +18,13 @@ jobs:
|
|||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
- run: (test -x $HOME/.cargo/bin/mdbook || cargo install mdbook)
|
- name: install mdbook
|
||||||
- run: mdbook build && mdbook test
|
run: (test -x $HOME/.cargo/bin/mdbook || cargo install mdbook)
|
||||||
- uses: JamesIves/github-pages-deploy-action@v4.4.1
|
- name: build and test
|
||||||
|
run: mdbook build && mdbook test
|
||||||
|
- name: publish
|
||||||
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository_owner == 'eunomia-bpf'
|
||||||
|
uses: JamesIves/github-pages-deploy-action@v4.4.1
|
||||||
with:
|
with:
|
||||||
branch: gh-pages
|
branch: gh-pages
|
||||||
folder: book
|
folder: book
|
||||||
|
|||||||
11
README.md
11
README.md
@@ -44,8 +44,17 @@
|
|||||||
|
|
||||||
这里涵盖了一系列和 eBPF 相关的高级内容,包含在 Android 上使用 eBPF 程序、使用 eBPF 程序进行可能的攻击与防御、复杂的追踪等等。将 eBPF 用户态与内核态的部分结合起来,可能能带来巨大的威力(同时也是安全隐患)。
|
这里涵盖了一系列和 eBPF 相关的高级内容,包含在 Android 上使用 eBPF 程序、使用 eBPF 程序进行可能的攻击与防御、复杂的追踪等等。将 eBPF 用户态与内核态的部分结合起来,可能能带来巨大的威力(同时也是安全隐患)。
|
||||||
|
|
||||||
|
Android:
|
||||||
|
|
||||||
- [在 Android 上使用 eBPF 程序](src/22-android/README.md)
|
- [在 Android 上使用 eBPF 程序](src/22-android/README.md)
|
||||||
- [使用 eBPF 追踪 HTTP 请求或其他用户态协议](src/23-http/README.md)
|
|
||||||
|
网络和追踪:
|
||||||
|
|
||||||
|
- [使用 eBPF 追踪 HTTP 请求或其他七层协议](src/23-http/README.md)
|
||||||
|
- [使用 sockops 加速网络请求转发](src/29-sockops/README.md)
|
||||||
|
|
||||||
|
安全:
|
||||||
|
|
||||||
- [使用 eBPF 隐藏进程或文件信息](src/24-hide/README.md)
|
- [使用 eBPF 隐藏进程或文件信息](src/24-hide/README.md)
|
||||||
- [使用 bpf_send_signal 发送信号终止进程](src/25-signal/README.md)
|
- [使用 bpf_send_signal 发送信号终止进程](src/25-signal/README.md)
|
||||||
- [使用 eBPF 添加 sudo 用户](src/26-sudo/README.md)
|
- [使用 eBPF 添加 sudo 用户](src/26-sudo/README.md)
|
||||||
|
|||||||
0
src/29-sockops/README.md
Normal file
0
src/29-sockops/README.md
Normal file
Reference in New Issue
Block a user