travis: Ensure python version is >= 3.5
This commit is contained in:
parent
668a43f815
commit
a59eedade1
3 changed files with 8 additions and 6 deletions
|
@ -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:
|
||||
|
|
|
@ -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 ../..
|
||||
|
|
|
@ -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 ../..
|
||||
|
|
Loading…
Reference in a new issue