GAM 5.03, fix x86 Windows and ARM Linux

This commit is contained in:
Jay Lee
2020-03-30 09:46:17 -04:00
parent 3c7085f073
commit b4959547a3
2 changed files with 6 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
if: tag IS blank
os: linux
language: python
dist: xenial
env:
global:
@@ -96,12 +97,12 @@ before_install:
else
export GAMOS="${TRAVIS_OS_NAME}";
fi
- if [ "${TRAVIS_CPU_ARCH}" == "amd64" ]; then
export PLATFORM="x86_64";
elif [ "${TRAVIS_OS_NAME}" == "Windows 32-bit" ]; then
- if [ "${TRAVIS_OS_NAME}" == "Windows 32-bit" ]; then
export PLATFORM="x86";
elif [ "${TRAVIS_CPU_ARCH}" == "amd64" ]; then
export PLATFORM="x86_64";
else
export PLATFORM="${TRAVIS_OS_NAME}";
export PLATFORM="${TRAVIS_CPU_ARCH}";
fi
- source src/travis/${TRAVIS_OS_NAME}-before-install.sh

View File

@@ -6,7 +6,7 @@ import platform
import re
gam_author = 'Jay Lee <jay0lee@gmail.com>'
gam_version = '5.02'
gam_version = '5.03'
gam_license = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
GAM_URL = 'https://git.io/gam'