Skip to content

Commit 908c0da

Browse files
committed
(Hopefully) got rid of all of the setup output
1 parent 73d8eb4 commit 908c0da

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
install: "sudo $TRAVIS_BUILD_DIR/travis/install_dependencies.sh"
2+
install: "sudo $TRAVIS_BUILD_DIR/travis/install_dependencies.sh > /dev/null"
33
python:
44
- "2.7"
55
script: "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"

travis/install_dependencies.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ echo "Installing compilation dependencies."
33
# Install GCC-ARM Compiler.
44

55
echo "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

99
echo "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

1313
echo "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

1919
echo "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

0 commit comments

Comments
 (0)