mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
8808096e2c
It does not make sense to do the static tests in a diferent image than the compilation tests. This commit updates the travis config to use the riotbuild image (the same as murdock). This should fix the issues with old doxygen versions reporting issues that are not, and also simplify the CI maintainance.
15 lines
284 B
YAML
15 lines
284 B
YAML
sudo: required
|
|
|
|
language: minimal
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- docker pull riot/riotbuild
|
|
|
|
script:
|
|
- docker run -a STDIN -a STDOUT -a STDERR --rm -u "$(id -u)"
|
|
-v "${PWD}:/data/riotbuild" -v /etc/localtime:/etc/localtime:ro
|
|
riot/riotbuild make static-test
|