From 3cc9940924935932a56c5cd383ed594196cb8129 Mon Sep 17 00:00:00 2001 From: HFO4 <912394456@qq.com> Date: Sat, 11 Apr 2020 11:17:34 +0800 Subject: [PATCH] Remove: arm64 build option --- .travis.yml | 1 - build.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0cf913f..88072b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,6 @@ before_deploy: - sudo apt-get update - sudo apt-get -y install gcc-mingw-w64-x86-64 - sudo apt-get -y install gcc-arm-linux-gnueabihf libc6-dev-armhf-cross - - sudo apt-get -y install gcc-aarch64-linux-gnu libc6-dev-i386 - chmod +x ./build.sh - ./build.sh -r b deploy: diff --git a/build.sh b/build.sh index 97adc24..976cec8 100755 --- a/build.sh +++ b/build.sh @@ -72,7 +72,7 @@ _build() { release(){ cd $REPO ## List of architectures and OS to test coss compilation. - SUPPORTED_OSARCH="linux/amd64/gcc linux/arm/arm-linux-gnueabihf-gcc windows/amd64/x86_64-w64-mingw32-gcc linux/arm64/aarch64-linux-gnu-gcc" + SUPPORTED_OSARCH="linux/amd64/gcc linux/arm/arm-linux-gnueabihf-gcc windows/amd64/x86_64-w64-mingw32-gcc" echo "Release builds for OS/Arch/CC: ${SUPPORTED_OSARCH}" for each_osarch in ${SUPPORTED_OSARCH}; do -- GitLab