Skip to content

Commit d561b54

Browse files
committed
Updating ARM compiler to oldest available version 5.3
1 parent d4afde9 commit d561b54

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.circleci/config.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,17 @@ commands:
2424
run_tests:
2525
steps:
2626
- run:
27-
name: Install GCC ARM compiler
27+
name: Install GCC ARM Embedded
28+
working_directory: /opt
2829
command: |
29-
add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
30-
apt-get -y update
31-
apt-get -y install gcc-arm-none-eabi=4.9.3.2015q3-1trusty1
30+
wget -O gcc_arm_embedded.tar.bz2 "https://developer.arm.com/-/media/Files/downloads/gnu-rm/5_3-2016q1/gccarmnoneeabi532016q120160330linuxtar.bz2?revision=417e2623-c259-4a12-aacc-c87200b569c7?product=GNU%20Arm%20Embedded%20Toolchain,32-bit,,Linux,5-2016-q1-update"
31+
tar -jxf gcc_arm_embedded.tar.bz2
32+
pwd
33+
echo 'export PATH="/opt/gcc-arm-none-eabi-5_3-2016q1/bin:$PATH"' >> $BASH_ENV
3234
- run:
3335
name: Configure Git and Mercurial
3436
command: |
37+
echo $PATH
3538
git config --global user.email "[email protected]"
3639
git config --global user.name "mbed Test"
3740
echo -e "[ui]\nusername = mbed Test <[email protected]>\n" > ~/.hgrc
@@ -55,7 +58,7 @@ commands:
5558
- run:
5659
name: Create a new project
5760
working_directory: integration_tests
58-
command: mbed new-test
61+
command: mbed new new-test
5962
- run:
6063
name: Test project inspection
6164
working_directory: integration_tests/new-test

0 commit comments

Comments
 (0)