You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
307 B
15 lines
307 B
sudo: required
|
|
|
|
before_install:
|
|
- sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y build-essential libftdi-dev gcc-arm-embedded
|
|
- sudo pip install intelhex
|
|
|
|
install: true
|
|
|
|
script:
|
|
- make -C libopencm3 lib
|
|
- make -C src all_platforms
|
|
|
|
|
|
|