mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
Add android x86 and x86_64 targets
This commit is contained in:
parent
5e93de34aa
commit
14ebe60bff
1 changed files with 22 additions and 5 deletions
25
.travis.yml
25
.travis.yml
|
@ -144,19 +144,33 @@ script:
|
||||||
- tar czpvf dnscrypt-proxy-macos-${TRAVIS_TAG:-dev}.tar.gz macos
|
- tar czpvf dnscrypt-proxy-macos-${TRAVIS_TAG:-dev}.tar.gz macos
|
||||||
|
|
||||||
- go clean
|
- go clean
|
||||||
- env CC=arm-linux-androideabi-clang CGO_ENABLED=1 GOOS=android GOARCH=arm GOARM=7 go build -ldflags="-s -w"
|
- env CC=arm-linux-androideabi-clang CXX=arm-linux-androideabi-clang++ CGO_ENABLED=1 GOOS=android GOARCH=arm GOARM=7 go build -ldflags="-s -w"
|
||||||
- mkdir android-arm
|
- mkdir android-arm
|
||||||
- ln dnscrypt-proxy android-arm/
|
- ln dnscrypt-proxy android-arm/
|
||||||
- cp ../LICENSE example-dnscrypt-proxy.toml example-*.txt android-arm/
|
- cp ../LICENSE example-dnscrypt-proxy.toml example-*.txt android-arm/
|
||||||
- zip -9 -r dnscrypt-proxy-android_arm-${TRAVIS_TAG:-dev}.zip android-arm
|
- zip -9 -r dnscrypt-proxy-android_arm-${TRAVIS_TAG:-dev}.zip android-arm
|
||||||
|
|
||||||
- go clean
|
- go clean
|
||||||
- env CC=aarch64-linux-android-clang CGO_ENABLED=1 GOOS=android GOARCH=arm64 go build -ldflags="-s -w"
|
- env CC=aarch64-linux-android-clang CXX=aarch64-linux-android-clang++ CGO_ENABLED=1 GOOS=android GOARCH=arm64 go build -ldflags="-s -w"
|
||||||
- mkdir android-arm64
|
- mkdir android-arm64
|
||||||
- ln dnscrypt-proxy android-arm64/
|
- ln dnscrypt-proxy android-arm64/
|
||||||
- cp ../LICENSE example-dnscrypt-proxy.toml example-*.txt android-arm64/
|
- cp ../LICENSE example-dnscrypt-proxy.toml example-*.txt android-arm64/
|
||||||
- zip -9 -r dnscrypt-proxy-android_arm64-${TRAVIS_TAG:-dev}.zip android-arm64
|
- zip -9 -r dnscrypt-proxy-android_arm64-${TRAVIS_TAG:-dev}.zip android-arm64
|
||||||
|
|
||||||
|
- go clean
|
||||||
|
- env CC=i686-linux-android-clang CXX=i686-linux-android-clang++ CGO_ENABLED=1 GOOS=android GOARCH=386 go build -ldflags="-s -w"
|
||||||
|
- mkdir android-i386
|
||||||
|
- ln dnscrypt-proxy android-i386/
|
||||||
|
- cp ../LICENSE example-dnscrypt-proxy.toml example-*.txt android-i386/
|
||||||
|
- zip -9 -r dnscrypt-proxy-android_i386-${TRAVIS_TAG:-dev}.zip android-i386
|
||||||
|
|
||||||
|
- go clean
|
||||||
|
- env CC=x86_64-linux-android-clang CXX=x86_64-linux-android-clang++ CGO_ENABLED=1 GOOS=android GOARCH=amd64 go build -ldflags="-s -w"
|
||||||
|
- mkdir android-x86_64
|
||||||
|
- ln dnscrypt-proxy android-x86_64/
|
||||||
|
- cp ../LICENSE example-dnscrypt-proxy.toml example-*.txt android-x86_64/
|
||||||
|
- zip -9 -r dnscrypt-proxy-android_x86_64-${TRAVIS_TAG:-dev}.zip android-x86_64
|
||||||
|
|
||||||
- ls -l dnscrypt-proxy-*.tar.gz dnscrypt-proxy-*.zip
|
- ls -l dnscrypt-proxy-*.tar.gz dnscrypt-proxy-*.zip
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
|
@ -186,8 +200,11 @@ before_install:
|
||||||
- NDK_STANDALONE=$HOME/ndk-standalone-${NDK_VER}
|
- NDK_STANDALONE=$HOME/ndk-standalone-${NDK_VER}
|
||||||
- MAKE_TOOLCHAIN=$NDK_TOOLS/build/tools/make_standalone_toolchain.py
|
- MAKE_TOOLCHAIN=$NDK_TOOLS/build/tools/make_standalone_toolchain.py
|
||||||
|
|
||||||
- python $MAKE_TOOLCHAIN --arch arm --api 21 --install-dir $NDK_STANDALONE/arm
|
- for arch in x86 x86_64 arm arm64; do
|
||||||
- python $MAKE_TOOLCHAIN --arch arm64 --api 21 --install-dir $NDK_STANDALONE/arm64
|
python $MAKE_TOOLCHAIN --arch $arch --api 21 --install-dir $NDK_STANDALONE/$arch;
|
||||||
|
PATH=$PATH:$NDK_STANDALONE/$arch/bin;
|
||||||
|
done
|
||||||
|
|
||||||
- rm -rf $NDK_TOOLS
|
- rm -rf $NDK_TOOLS
|
||||||
|
|
||||||
- PATH=$PATH:$NDK_STANDALONE/arm/bin
|
- PATH=$PATH:$NDK_STANDALONE/arm/bin
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue