From 83b17d5061d9f6008581a59ff189ec5eeb43e847 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Sun, 22 Oct 2017 20:00:37 -0500 Subject: [PATCH] travis-ci: remove unused --- .travis.yml | 1 - ci/travis-build.sh | 9 --------- ci/travis-prepare.sh | 40 ---------------------------------------- 3 files changed, 50 deletions(-) delete mode 100644 ci/travis-prepare.sh diff --git a/.travis.yml b/.travis.yml index 743908764..f8b11534f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,5 +28,4 @@ addons: cache: directories: - $HOME/.cache -install: sh ci/travis-prepare.sh &2 - exit 1 -} - -CURDIR="$PWD" - -QDIR="$HOME/.cache/qemu" - -if [ -n "$RTEMS" -a "$TEST" = "YES" ] -then - git clone --quiet --branch vme --depth 10 https://github.com/mdavidsaver/qemu.git "$HOME/.build/qemu" - cd "$HOME/.build/qemu" - - HEAD=`git log -n1 --pretty=format:%H` - echo "HEAD revision $HEAD" - - [ -e "$HOME/.cache/qemu/built" ] && BUILT=`cat "$HOME/.cache/qemu/built"` - echo "Cached revision $BUILT" - - if [ "$HEAD" != "$BUILT" ] - then - echo "Building QEMU" - git submodule --quiet update --init - - install -d "$HOME/.build/qemu/build" - cd "$HOME/.build/qemu/build" - - "$HOME/.build/qemu/configure" --prefix="$HOME/.cache/qemu/usr" --target-list=i386-softmmu --disable-werror - make -j2 - make install - - echo "$HEAD" > "$HOME/.cache/qemu/built" - fi -fi - -cd "$CURDIR"