ci.yml 11 KB

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