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

View file

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

View file

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