forked from ARMmbed/mbed-os-example-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
74 lines (63 loc) · 2.26 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
env:
matrix:
- TARGET=K82F
- TARGET=NRF52840_DK
- TARGET=K64F
- TARGET=UBLOX_EVK_ODIN_W2
- TARGET=NUCLEO_F429ZI
global:
- >
STATUS=$'curl -so/dev/null --user $MBED_BOT --request POST
https://api.github.com/repos/$TRAVIS_REPO_SLUG/statuses/${TRAVIS_PULL_REQUEST_SHA:-$TRAVIS_COMMIT}
--data @- << DATA\n{
"state": "$0",
"description": "$1",
"context": "travis-ci/$TARGET",
"target_url": "https://travis-ci.org/$TRAVIS_REPO_SLUG/jobs/$TRAVIS_JOB_ID"
}\nDATA'
cache:
pip: true
directories:
- $HOME/.cache/apt
before_install:
- bash -c "$STATUS" pending "Build $TARGET in progress"
# Make sure pipefail
- set -o pipefail
# Setup apt to cache
- mkdir -p $HOME/.cache/apt/partial
- sudo rm -rf /var/cache/apt/archives
- sudo ln -s $HOME/.cache/apt /var/cache/apt/archives
# Setup ppa to make sure arm-none-eabi-gcc is correct version
- sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
- sudo apt-get update -qq
after_success:
- bash -c "$STATUS" success "Build $TARGET has passed"
after_failure:
- bash -c "$STATUS" failure "Build $TARGET has failed"
install:
# Install dependencies
- sudo apt-get install gcc-arm-embedded
- pip install --user mbed-cli
# Deploy mbed and pip dependencies
- mbed deploy
- pip install --user -r mbed-os/requirements.txt
# Print versions we use
- arm-none-eabi-gcc --version
- gcc --version
- python --version
script:
# Check that example compiles with littlefs + spif
- mbed compile -t GCC_ARM -m $TARGET -j0
# Check that example compiles with littlefs + dataflash
- sed -i 's/SPIFBlockDevice bd/DataFlashBlockDevice bd/g' main.cpp
- sed -i 's/MBED_CONF_SPIF_DRIVER/MBED_CONF_DATAFLASH/g' main.cpp
- mbed compile -t GCC_ARM -m $TARGET -j0
# Check that example compiles with fatfs + sd
- sed -i 's/LittleFileSystem fs/FATFileSystem fs/g' main.cpp
- sed -i 's/DataFlashBlockDevice bd/SDBlockDevice bd/g' main.cpp
- sed -i 's/MBED_CONF_DATAFLASH/MBED_CONF_SD/g' main.cpp
- mbed compile -t GCC_ARM -m $TARGET -j0
# Check that example compiles with fatfs + heap
- sed -i 's/SDBlockDevice bd(/HeapBlockDevice bd(1024*512, 512);/g' main.cpp
- sed -i '/MBED_CONF_SD/d' main.cpp
- mbed compile -t GCC_ARM -m $TARGET -j0