ci.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. name: aya-ci
  2. on:
  3. push:
  4. branches-ignore: 'create-pull-request/**'
  5. pull_request:
  6. schedule:
  7. - cron: 00 4 * * *
  8. env:
  9. CARGO_TERM_COLOR: always
  10. jobs:
  11. lint:
  12. runs-on: ubuntu-latest
  13. steps:
  14. - uses: actions/checkout@v4
  15. - uses: dtolnay/rust-toolchain@nightly
  16. with:
  17. components: clippy,miri,rustfmt,rust-src
  18. # Installed *after* nightly so it is the default.
  19. - uses: dtolnay/rust-toolchain@stable
  20. - uses: Swatinem/rust-cache@v2
  21. - uses: taiki-e/install-action@v2
  22. with:
  23. tool: cargo-hack,taplo-cli
  24. - name: Check C formatting
  25. run: git ls-files -- '*.c' '*.h' | xargs clang-format --dry-run --Werror
  26. - name: Check Markdown
  27. uses: DavidAnson/markdownlint-cli2-action@v19
  28. - name: Check TOML formatting
  29. run: taplo fmt --check
  30. - name: Check formatting
  31. run: cargo +nightly fmt --all -- --check
  32. - name: Run clippy
  33. run: ./clippy.sh
  34. - run: cargo xtask public-api
  35. if: github.event_name == 'pull_request'
  36. - run: cargo xtask public-api --bless
  37. if: github.event_name != 'pull_request' && github.repository_owner == 'aya-rs'
  38. - uses: peter-evans/create-pull-request@v7
  39. if: github.event_name != 'pull_request' && github.repository_owner == 'aya-rs'
  40. with:
  41. branch: create-pull-request/public-api
  42. commit-message: 'public-api: regenerate'
  43. title: 'public-api: regenerate'
  44. body: |
  45. **Automated changes**
  46. - name: Run miri
  47. run: |
  48. set -euxo pipefail
  49. cargo +nightly hack miri test --all-targets --feature-powerset \
  50. --exclude aya-ebpf \
  51. --exclude aya-ebpf-bindings \
  52. --exclude aya-log-ebpf \
  53. --exclude integration-ebpf \
  54. --exclude integration-test \
  55. --workspace
  56. build-test-aya:
  57. strategy:
  58. fail-fast: false
  59. matrix:
  60. bpf_target_arch:
  61. - x86_64-unknown-linux-gnu
  62. - aarch64-unknown-linux-gnu
  63. - armv7-unknown-linux-gnueabi
  64. - riscv64gc-unknown-linux-gnu
  65. - powerpc64le-unknown-linux-gnu
  66. - s390x-unknown-linux-gnu
  67. - mips-unknown-linux-gnu
  68. runs-on: ubuntu-latest
  69. steps:
  70. - uses: actions/checkout@v4
  71. - uses: dtolnay/rust-toolchain@stable
  72. - uses: Swatinem/rust-cache@v2
  73. - uses: taiki-e/install-action@cargo-hack
  74. - name: Build
  75. run: |
  76. set -euxo pipefail
  77. cargo hack build --all-targets --feature-powerset \
  78. --exclude aya-ebpf \
  79. --exclude aya-ebpf-bindings \
  80. --exclude aya-log-ebpf \
  81. --exclude integration-ebpf \
  82. --workspace
  83. - name: Test
  84. env:
  85. RUST_BACKTRACE: full
  86. run: |
  87. set -euxo pipefail
  88. cargo hack test --all-targets --feature-powerset \
  89. --exclude aya-ebpf \
  90. --exclude aya-ebpf-bindings \
  91. --exclude aya-log-ebpf \
  92. --exclude integration-ebpf \
  93. --exclude integration-test \
  94. --workspace
  95. - name: Doctests
  96. env:
  97. RUST_BACKTRACE: full
  98. run: |
  99. set -euxo pipefail
  100. cargo hack test --doc --feature-powerset \
  101. --exclude aya-ebpf \
  102. --exclude aya-ebpf-bindings \
  103. --exclude aya-log-ebpf \
  104. --exclude init \
  105. --exclude integration-ebpf \
  106. --exclude integration-test \
  107. --workspace
  108. build-test-aya-ebpf:
  109. strategy:
  110. fail-fast: false
  111. matrix:
  112. bpf_target_arch:
  113. - x86_64
  114. - aarch64
  115. - arm
  116. - riscv64
  117. - powerpc64
  118. - s390x
  119. - mips
  120. target:
  121. - bpfel-unknown-none
  122. - bpfeb-unknown-none
  123. runs-on: ubuntu-latest
  124. steps:
  125. - uses: actions/checkout@v4
  126. - uses: dtolnay/rust-toolchain@nightly
  127. with:
  128. components: rust-src
  129. # Installed *after* nightly so it is the default.
  130. - uses: dtolnay/rust-toolchain@stable
  131. - uses: Swatinem/rust-cache@v2
  132. - name: bpf-linker
  133. run: cargo install --git https://github.com/aya-rs/bpf-linker.git
  134. - uses: taiki-e/install-action@cargo-hack
  135. - name: Build
  136. env:
  137. CARGO_CFG_BPF_TARGET_ARCH: ${{ matrix.bpf_target_arch }}
  138. run: |
  139. set -euxo pipefail
  140. cargo +nightly hack build \
  141. --target ${{ matrix.target }} \
  142. -Z build-std=core \
  143. --package aya-ebpf \
  144. --package aya-log-ebpf \
  145. --feature-powerset
  146. - name: Test
  147. env:
  148. CARGO_CFG_BPF_TARGET_ARCH: ${{ matrix.bpf_target_arch }}
  149. RUST_BACKTRACE: full
  150. run: |
  151. set -euxo pipefail
  152. cargo hack test \
  153. --doc \
  154. --package aya-ebpf \
  155. --package aya-log-ebpf \
  156. --feature-powerset
  157. run-integration-test:
  158. strategy:
  159. fail-fast: false
  160. matrix:
  161. include:
  162. - target: x86_64-apple-darwin
  163. # macos-14 is arm64[0] which doesn't support nested
  164. # virtualization[1].
  165. #
  166. # [0] https://github.com/actions/runner-images#available-images
  167. #
  168. # [1] https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#limitations-for-arm64-macos-runners
  169. os: macos-13
  170. # We don't use ubuntu-latest because we care about the apt packages available.
  171. - target: x86_64-unknown-linux-gnu
  172. os: ubuntu-22.04
  173. - target: aarch64-unknown-linux-gnu
  174. os: ubuntu-22.04-arm
  175. runs-on: ${{ matrix.os }}
  176. steps:
  177. - uses: actions/checkout@v4
  178. with:
  179. submodules: recursive
  180. - name: Install prerequisites
  181. if: runner.os == 'Linux'
  182. # ubuntu-22.04 comes with clang 13-15[0]; support for signed and 64bit
  183. # enum values was added in clang 15[1] which isn't in `$PATH`.
  184. #
  185. # [0] https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
  186. #
  187. # [1] https://github.com/llvm/llvm-project/commit/dc1c43d
  188. run: |
  189. set -euxo pipefail
  190. sudo apt update
  191. sudo apt -y install lynx qemu-system-{arm,x86}
  192. echo /usr/lib/llvm-15/bin >> $GITHUB_PATH
  193. - name: Install prerequisites
  194. if: runner.os == 'macOS'
  195. # The curl shipped on macOS doesn't contain
  196. # https://github.com/curl/curl/commit/85efbb92b8e6679705e122cee45ce76c56414a3e which is
  197. # needed for proper handling of `--etag-{compare,save}`.
  198. #
  199. # The tar shipped on macOS doesn't support --wildcards, so we need GNU tar.
  200. #
  201. # The clang shipped on macOS doesn't support BPF, so we need LLVM from brew.
  202. run: |
  203. set -euxo pipefail
  204. brew update
  205. # https://github.com/actions/setup-python/issues/577
  206. find /usr/local/bin -type l -exec sh -c 'readlink -f "$1" \
  207. | grep -q ^/Library/Frameworks/Python.framework/Versions/' _ {} \; -exec rm -v {} \;
  208. brew install --formula curl dpkg gnu-tar llvm lynx pkg-config qemu
  209. echo $(brew --prefix curl)/bin >> $GITHUB_PATH
  210. echo $(brew --prefix gnu-tar)/libexec/gnubin >> $GITHUB_PATH
  211. echo $(brew --prefix llvm)/bin >> $GITHUB_PATH
  212. - uses: dtolnay/rust-toolchain@nightly
  213. with:
  214. components: rust-src
  215. # Installed *after* nightly so it is the default.
  216. - uses: dtolnay/rust-toolchain@stable
  217. with:
  218. targets: aarch64-unknown-linux-musl,x86_64-unknown-linux-musl
  219. - uses: Swatinem/rust-cache@v2
  220. - name: Install libLLVM
  221. # Download libLLVM from Rust CI to ensure that the libLLVM version
  222. # matches exactly with the version used by the current Rust nightly. A
  223. # mismatch between libLLVM (used by bpf-linker) and Rust's LLVM version
  224. # can lead to linking issues.
  225. run: |
  226. set -euxo pipefail
  227. # Get the partial SHA from Rust nightly.
  228. rustc_sha=$(rustc +nightly --version | grep -oE '[a-f0-9]{7,40}')
  229. # Get the full SHA from GitHub.
  230. rustc_sha=$(curl -sfSL https://api.github.com/repos/rust-lang/rust/commits/$rustc_sha \
  231. --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
  232. --header 'content-type: application/json' \
  233. | jq -r '.sha')
  234. mkdir -p /tmp/rustc-llvm
  235. curl -sfSL https://ci-artifacts.rust-lang.org/rustc-builds/$rustc_sha/rust-dev-nightly-${{ matrix.target }}.tar.xz | \
  236. tar -xJ --strip-components 2 -C /tmp/rustc-llvm
  237. echo /tmp/rustc-llvm/bin >> $GITHUB_PATH
  238. - name: bpf-linker
  239. # NB: rustc doesn't ship libLLVM.so on macOS, so disable proxying (default feature). We also
  240. # --force so that bpf-linker gets always relinked against the latest LLVM downloaded above.
  241. #
  242. # Do this on all system (not just macOS) to avoid relying on rustc-provided libLLVM.so.
  243. run: cargo install --git https://github.com/aya-rs/bpf-linker.git --no-default-features --force
  244. - name: Cache test cache
  245. uses: actions/cache@v4
  246. with:
  247. path: test/.tmp
  248. key: ${{ runner.arch }}-${{ runner.os }}-test-cache
  249. - name: Download debian kernels
  250. if: runner.arch == 'ARM64'
  251. # TODO: enable tests on kernels before 6.0.
  252. run: .github/scripts/download_kernel_images.sh test/.tmp/debian-kernels/arm64 arm64 6.1 6.10
  253. - name: Download debian kernels
  254. if: runner.arch == 'X64'
  255. # TODO: enable tests on kernels before 6.0.
  256. run: .github/scripts/download_kernel_images.sh test/.tmp/debian-kernels/amd64 amd64 6.1 6.10
  257. - name: Extract debian kernels
  258. run: |
  259. set -euxo pipefail
  260. find test/.tmp -name '*.deb' -print0 | xargs -t -0 -I {} \
  261. sh -c "dpkg --fsys-tarfile {} | tar -C test/.tmp --wildcards --extract '*vmlinuz*' --file -"
  262. - name: Run local integration tests
  263. if: runner.os == 'Linux'
  264. run: cargo xtask integration-test local
  265. - name: Run virtualized integration tests
  266. run: |
  267. set -euxo pipefail
  268. find test/.tmp -name 'vmlinuz-*' -print0 | xargs -t -0 \
  269. cargo xtask integration-test vm --cache-dir test/.tmp --github-api-token ${{ secrets.GITHUB_TOKEN }}
  270. # Provides a single status check for the entire build workflow.
  271. # This is used for merge automation, like Mergify, since GH actions
  272. # has no concept of "when all status checks pass".
  273. # https://docs.mergify.com/conditions/#validating-all-status-checks
  274. build-workflow-complete:
  275. needs:
  276. - lint
  277. - build-test-aya
  278. - build-test-aya-ebpf
  279. - run-integration-test
  280. runs-on: ubuntu-latest
  281. steps:
  282. - name: Build Complete
  283. run: echo "Build Complete"