travis: Ensure python version is >= 3.5

This commit is contained in:
MerryMage 2020-04-17 23:54:16 +01:00
parent 668a43f815
commit a59eedade1
3 changed files with 8 additions and 6 deletions

View file

@ -38,8 +38,7 @@ matrix:
script: ./.travis/build-x86_64-macos/build.sh
- env: NAME="Test - Fuzz against Unicorn"
os: linux
dist: trusty
python: "3.8"
dist: bionic
addons:
apt:
sources:
@ -53,8 +52,7 @@ matrix:
script: ./.travis/test-with-unicorn-on-x86_64-linux/build.sh
- env: NAME="Test - SSE3 only"
os: linux
dist: trusty
python: "3.8"
dist: bionic
addons:
apt:
sources:

View file

@ -3,10 +3,12 @@
set -e
set -x
python3 --version
# TODO: This isn't ideal.
cd externals
git clone https://github.com/MerryMage/ext-boost
git clone https://github.com/yuzu-emu/unicorn
git clone https://github.com/MerryMage/unicorn
cd unicorn
UNICORN_ARCHS=aarch64,arm ./make.sh
cd ../..

View file

@ -3,10 +3,12 @@
set -e
set -x
python3 --version
# TODO: This isn't ideal.
cd externals
git clone https://github.com/MerryMage/ext-boost
git clone https://github.com/yuzu-emu/unicorn
git clone https://github.com/MerryMage/unicorn
cd unicorn
UNICORN_ARCHS="arm aarch64" ./make.sh
cd ../..