mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
Add linux-x86 build
This commit is contained in:
parent
832a733894
commit
0257085279
@ -7,6 +7,10 @@ matrix:
|
||||
- name: "linux-x64"
|
||||
os: linux
|
||||
dist: bionic
|
||||
- name: "linux-x86"
|
||||
os: linux
|
||||
dist: bionic
|
||||
env: EXTRA_FLAGS='target_cpu="x86"'
|
||||
- name: "linux-arm64"
|
||||
os: linux
|
||||
dist: bionic
|
||||
|
@ -27,6 +27,9 @@ if [ "$ARCH" = Linux ]; then
|
||||
build_sysroot I386
|
||||
build_sysroot ARM
|
||||
;;
|
||||
x86)
|
||||
build_sysroot I386
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
@ -7,6 +7,7 @@ if [ "$(uname)" = Linux ]; then
|
||||
case "$target_cpu" in
|
||||
arm64) naive="qemu-aarch64 -L src/build/linux/debian_sid_arm64-sysroot $naive";;
|
||||
arm) naive="qemu-arm -L src/build/linux/debian_sid_arm-sysroot $naive";;
|
||||
x86) naive="qemu-i386 -L src/build/linux/debian_sid_i386-sysroot $naive";;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user