From b4959547a3cd77b840a5bc5a8bc28f95af5f2a86 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Mon, 30 Mar 2020 09:46:17 -0400 Subject: [PATCH] GAM 5.03, fix x86 Windows and ARM Linux --- .travis.yml | 9 +++++---- src/var.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 40085091..62784e91 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/src/var.py b/src/var.py index 459fd9ae..11b451ef 100644 --- a/src/var.py +++ b/src/var.py @@ -6,7 +6,7 @@ import platform import re gam_author = 'Jay Lee ' -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'