|
|
|
name: build-aya
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- ci
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
arch:
|
|
|
|
- x86_64-unknown-linux-gnu
|
|
|
|
- aarch64-unknown-linux-gnu
|
|
|
|
- armv7-unknown-linux-gnueabi
|
|
|
|
- riscv64gc-unknown-none-elf
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: Swatinem/rust-cache@v1
|
|
|
|
- name: Prereqs
|
|
|
|
run: cargo install cross --git https://github.com/cross-rs/cross
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: cross build --verbose
|
|
|
|
|
|
|
|
- name: Run test
|
|
|
|
run: RUST_BACKTRACE=full cross test --verbose
|
|
|
|
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
needs: build
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: libbpf/libbpf
|
|
|
|
path: libbpf
|
|
|
|
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
components: rustfmt, clippy, rust-src
|
|
|
|
target: x86_64-unknown-linux-musl
|
|
|
|
override: true
|
|
|
|
|
|
|
|
- uses: Swatinem/rust-cache@v1
|
|
|
|
|
|
|
|
- name: Install Pre-requisites
|
|
|
|
run: |
|
|
|
|
sudo apt-get -qy install linux-tools-common qemu-system-x86 cloud-image-utils openssh-client libelf-dev gcc-multilib
|
|
|
|
cargo install bpf-linker
|
|
|
|
|
|
|
|
|
|
|
|
- name: Lint integration tests
|
|
|
|
run: |
|
|
|
|
cargo xtask build-integration-test-ebpf --libbpf-dir ./libbpf
|
|
|
|
cargo clippy -p integration-test -- --deny warnings
|
|
|
|
cargo clippy -p integration-test-macros -- --deny warnings
|
|
|
|
|
|
|
|
- name: Run integration tests
|
|
|
|
run: |
|
|
|
|
(cd test && ./run.sh ../libbpf)
|