Clean + workflow dispatch
This commit is contained in:
parent
735d28224e
commit
20ee0f7d17
2 changed files with 2 additions and 4 deletions
4
.github/workflows/build-strace.yml
vendored
4
.github/workflows/build-strace.yml
vendored
|
@ -1,8 +1,6 @@
|
|||
name: strace
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- strace
|
||||
workflow_dispatch
|
||||
jobs:
|
||||
build-x86:
|
||||
name: Build strace x86
|
||||
|
|
|
@ -24,7 +24,7 @@ build_strace() {
|
|||
if [ "$CURRENT_ARCH" != "x86_64" ];then
|
||||
CMD+="CC_FOR_BUILD=\"/x86_64-linux-musl-cross/bin/x86_64-linux-musl-gcc\" "
|
||||
CMD+="CPP_FOR_BUILD=\"/x86_64-linux-musl-cross/bin/x86_64-linux-musl-g++ -E\" "
|
||||
CMD+="CXX_FOR_BUILD=\"/x86_64-linux-musl-cross/bin/x86_64-linux-musl-g++ -E\" "
|
||||
CMD+="CXX_FOR_BUILD=\"/x86_64-linux-musl-cross/bin/x86_64-linux-musl-g++\" "
|
||||
fi
|
||||
CMD+="./configure --disable-mpers --host=$(get_host_triple)"
|
||||
eval "$CMD"
|
||||
|
|
Loading…
Reference in a new issue