mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-03 12:21:35 +00:00
GAM 5.03, fix x86 Windows and ARM Linux
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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'
|
||||||
|
|||||||
Reference in New Issue
Block a user