File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,19 @@ jobs:
14
14
- uses : actions/checkout@v4
15
15
16
16
- name : Install toolchain
17
- run : rustup toolchain install nightly --component rust-src && cargo install bpf-linker
17
+ run : |
18
+ rustup toolchain install nightly --component rust-src
19
+ rustup target add x86_64-unknown-linux-gnu
20
+ cargo install bpf-linker --target x86_64-unknown-linux-gnu
18
21
19
22
- name : Build
20
- run : make
23
+ run : |
24
+ AYA_BUILD_EBPF=true cargo build --release --target x86_64-unknown-linux-gnu
25
+ cp target/x86_64-unknown-linux-gnu/release/rust-memleak target/rust-memleak-x86_64
21
26
22
- - name : Release
23
27
uses : softprops/action-gh-release@v1
24
28
with :
25
- files : " target/release/ rust-memleak"
29
+ files : " target/rust-memleak-x86_64 "
26
30
env :
27
31
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
28
32
You can’t perform that action at this time.
0 commit comments