File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : libbpf-bootstrap android ubuntu_latest
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+
9
+ jobs :
10
+ build_libbpf_bootstrap_android :
11
+ runs-on : ubuntu-latest
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ arch : [armeabi-v7a, x86_64]
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ with :
19
+ submodules : recursive
20
+ - uses : xmake-io/github-action-setup-xmake@v1
21
+ with :
22
+ xmake-version : ' latest'
23
+ - name : Install Dependencies
24
+ run : |
25
+ sudo apt-get update -y && sudo apt-get install -yqq \
26
+ build-essential clang llvm libelf1 libelf-dev zlib1g-dev libc++-dev libc++abi-dev \
27
+ sudo \
28
+ && sudo apt-get -y clean
29
+ - name : Build xmake android examples/c
30
+ run : |
31
+ cd examples/c && xmake f -p android -a ${{ matrix.arch }} -m release -y && xmake -y
You can’t perform that action at this time.
0 commit comments