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 1
1
---
2
- install : " sudo $TRAVIS_BUILD_DIR/travis/install_dependencies.sh"
2
+ install : " sudo $TRAVIS_BUILD_DIR/travis/install_dependencies.sh > /dev/null "
3
3
python :
4
4
- " 2.7"
5
5
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"
Original file line number Diff line number Diff line change @@ -3,22 +3,22 @@ echo "Installing compilation dependencies."
3
3
# Install GCC-ARM Compiler.
4
4
5
5
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
8
8
9
9
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
12
12
13
13
echo " Setting up Wine."
14
- sudo apt-get install -y wine1.5 > /dev/null
14
+ sudo apt-get install -y wine1.5
15
15
16
16
17
17
# Download ARMCC (Testing Purposes only at the moment)
18
18
19
19
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
22
22
23
23
# Setup ARMCC environment variables
24
24
You can’t perform that action at this time.
0 commit comments