From ffbd9a7ff479aeba54b5013013e230502274513c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=91=E5=BE=AE?= <1067852565@qq.com> Date: Sun, 3 Sep 2023 16:14:05 +0100 Subject: [PATCH] fix the link to github repo (#71) --- .github/workflows/main.yml | 2 +- src/SUMMARY.md | 5 ++++- src/SUMMARY_en.md | 2 ++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 39c7101..e0dcf31 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: - name: install mdbook run: (test -x $HOME/.cargo/bin/mdbook || cargo install mdbook) - name: build and test - run: mdbook build && mdbook test + run: mdbook build - name: publish if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'eunomia-bpf' uses: JamesIves/github-pages-deploy-action@v4.4.1 diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 7a0db73..21e7711 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -4,7 +4,10 @@ 本教程不会进行复杂的概念讲解和场景介绍,主要希望提供一些 eBPF 小工具的案例(**非常短小,从二十行代码开始入门!**),来帮助 eBPF 应用的开发者快速上手 eBPF 的开发方法和技巧。教程内容可以在目录中找到,每个目录都是一个独立的 eBPF 工具案例。 -教程关注于可观测性、网络、安全等等方面的 eBPF 示例: +教程关注于可观测性、网络、安全等等方面的 eBPF 示例。完整的代码和教程可以在 [https://github.com/eunomia-bpf/bpf-developer-tutorial](https://github.com/eunomia-bpf/bpf-developer-tutorial) GitHub 开源仓库中找到。 + + +# 目录 - [介绍 eBPF 的基本概念、常见的开发工具](0-introduce/README.md) - [eBPF Hello World,基本框架和开发流程](1-helloworld/README.md) diff --git a/src/SUMMARY_en.md b/src/SUMMARY_en.md index 8be74d1..745ec7a 100644 --- a/src/SUMMARY_en.md +++ b/src/SUMMARY_en.md @@ -6,6 +6,8 @@ This is a development tutorial for eBPF based on CO-RE (Compile Once, Run Everyw This tutorial does not cover complex concepts and scenario introductions. Its main purpose is to provide examples of eBPF tools (**very short, starting with twenty lines of code!**) to help eBPF application developers quickly grasp eBPF development methods and techniques. The tutorial content can be found in the directory, with each directory being an independent eBPF tool example. +For the complete source code of the tutorial, please refer to the repo [https://github.com/eunomia-bpf/bpf-developer-tutorial](https://github.com/eunomia-bpf/bpf-developer-tutorial) on GitHub. + # Table of Contents - [Introduction to basic concepts of eBPF and common development tools](0-introduce/README.md)