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

View File

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