File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11---
2- install : " sudo $TRAVIS_BUILD_DIR/travis/install_dependencies.sh"
2+ install : " sudo $TRAVIS_BUILD_DIR/travis/install_dependencies.sh > /dev/null "
33python :
44 - " 2.7"
55script : " python workspace_tools/build.py -r -e -U -u -d -b -t ARM_MICRO;python workspace_tools/build.py -r -e -U -u -d -b -t ARM_CC;python workspace_tools/build.py -r -e -U -u -d -b -t GCC_ARM"
Original file line number Diff line number Diff line change @@ -3,22 +3,22 @@ echo "Installing compilation dependencies."
33# Install GCC-ARM Compiler.
44
55echo " Adding apt repositories."
6- sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded > /dev/null
7- sudo add-apt-repository -y ppa:ubuntu-wine/ppa > /dev/null
6+ sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
7+ sudo add-apt-repository -y ppa:ubuntu-wine/ppa
88
99echo " Installing gcc_arm software"
10- sudo apt-get update > /dev/null
11- sudo apt-get install -y gcc-arm-none-eabi > /dev/null
10+ sudo apt-get update
11+ sudo apt-get install -y gcc-arm-none-eabi
1212
1313echo " Setting up Wine."
14- sudo apt-get install -y wine1.5 > /dev/null
14+ sudo apt-get install -y wine1.5
1515
1616
1717# Download ARMCC (Testing Purposes only at the moment)
1818
1919echo " Installing ARMCC"
20- wget https://dl.dropboxusercontent.com/u/15449666/ARMCC.tar.gz > /dev/null
21- tar xvfz ARMCC.tar.gz > /dev/null
20+ wget https://dl.dropboxusercontent.com/u/15449666/ARMCC.tar.gz
21+ tar xvfz ARMCC.tar.gz
2222
2323# Setup ARMCC environment variables
2424
You can’t perform that action at this time.
0 commit comments