12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- name: integration-tests
- on:
- push:
- branches:
- - main
- pull_request:
- branches:
- - main
- env:
- CARGO_TERM_COLOR: always
- jobs:
- test:
- runs-on: macos-latest
- steps:
- - uses: actions/checkout@v3
- - uses: actions/checkout@v3
- with:
- repository: libbpf/libbpf
- path: libbpf
- - name: Install Pre-requisites
- run: |
- brew install qemu gnu-getopt coreutils cdrtools
- - name: Cache tmp files
- uses: actions/cache@v3
- with:
- path: |
- .tmp
|