From 02dd9254b1d3aa1d0b084aa8bea510905f6de00a Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Thu, 21 Feb 2019 18:06:51 -0500 Subject: [PATCH] [travis] Enable ppc gentest and tests --- .travis.yml | 4 +++- third_party/binutils/build.sh | 0 2 files changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 third_party/binutils/build.sh diff --git a/.travis.yml b/.travis.yml index 40056746a..2075010ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,6 +50,7 @@ before_script: - if [[ $BUILD == true ]]; then sudo dpkg -i libvulkan1_$LIBVULKAN_VERSION+dfsg1-1_amd64.deb libvulkan-dev_$LIBVULKAN_VERSION+dfsg1-1_amd64.deb; fi # Prepare environment (pull dependencies, build tools). - travis_retry ./xenia-build setup + - if [[ $BUILD == true ]]; then ./third_party/binutils/build.sh; fi script: # Run linter. @@ -59,8 +60,9 @@ script: - if [[ $BUILD == true ]]; then ./xenia-build build --config=$CONFIG --target=xenia-base-tests; fi - if [[ $BUILD == true ]]; then ./build/bin/Linux/$CONFIG/xenia-base-tests; fi # Build and run ppc tests. + - if [[ $BUILD == true ]]; then ./xenia-build gentests; fi - if [[ $BUILD == true ]]; then ./xenia-build build --config=$CONFIG --target=xenia-cpu-ppc-tests; fi - # - if [[ $BUILD == true ]]; then ./build/bin/Linux/$CONFIG/xenia-cpu-ppc-tests --log_file=stdout; fi + - if [[ $BUILD == true ]]; then ./build/bin/Linux/$CONFIG/xenia-cpu-ppc-tests --log_file=stdout; fi # Build all of xenia. - if [[ $BUILD == true ]]; then ./xenia-build build --config=$CONFIG; fi diff --git a/third_party/binutils/build.sh b/third_party/binutils/build.sh old mode 100644 new mode 100755