File tree Expand file tree Collapse file tree 3 files changed +25
-10
lines changed Expand file tree Collapse file tree 3 files changed +25
-10
lines changed Original file line number Diff line number Diff line change 7
7
build :
8
8
docker :
9
9
- image : circleci/python:3.6.1
10
- working_directory : ~/work
10
+ working_directory : ~/repo
11
11
steps :
12
12
- checkout :
13
- path : sinppet/TESTS
14
- - run : mv sinppet/TESTS/mbed-os.lib .
13
+ path : work/ sinppet/TESTS
14
+ - run : mv work/ sinppet/TESTS/mbed-os.lib work/
15
15
- run : wget -q https://developer.arm.com/-/media/Files/downloads/gnu-rm/6_1-2017q1/gcc-arm-none-eabi-6-2017-q1-update-linux.tar.bz2
16
16
- run : tar -xjf gcc-arm-none-eabi-6-2017-q1-update-linux.tar.bz2
17
- - run : echo 'export PATH=~/work /gcc-arm-none-eabi-6-2017-q1-update/bin:$PATH' >> $BASH_ENV
17
+ - run : echo 'export PATH=~/repo /gcc-arm-none-eabi-6-2017-q1-update/bin:$PATH' >> $BASH_ENV
18
18
- run : sudo pip install mbed-cli
19
- - run : git clone https://github.com/ARMmbed/mbed-os.git
20
- - run : sudo pip install -r mbed-os/requirements.txt
21
- - run : ls -al
22
- - run : mbed config root .
23
- - run : mbed update
24
- - run : mbed test --compile-list -m K64F -t GCC_ARM
19
+ - run : git clone https://github.com/ARMmbed/mbed-os.git work/mbed-os
20
+ - run : sudo pip install -r work/mbed-os/requirements.txt
21
+ - run : |
22
+ cd work
23
+ mbed config root .
24
+ mbed update
25
+ mbed test --compile -m K64F -t GCC_ARM -n sinppet-* --app-config=sinppet/TESTS/test.json -v
25
26
Original file line number Diff line number Diff line change
1
+ .circleci
2
+ .git
Original file line number Diff line number Diff line change
1
+ {
2
+ "target_overrides" : {
3
+ "K64F" :{
4
+ "target.components_add" : [" SPIF" ],
5
+ "spif-driver.SPI_MOSI" : " D11" ,
6
+ "spif-driver.SPI_MISO" : " D12" ,
7
+ "spif-driver.SPI_CLK" : " D13" ,
8
+ "spif-driver.SPI_CS" : " D10"
9
+
10
+ }
11
+ }
12
+ }
You can’t perform that action at this time.
0 commit comments