mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			884 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			884 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| sudo: false
 | |
| language: c++
 | |
| compiler:
 | |
|   - gcc
 | |
|   - clang
 | |
| before_install:
 | |
|   - pip install --user cpp-coveralls
 | |
|   - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
 | |
|   - sleep 3
 | |
|   - export DISPLAY=:1.0
 | |
|   - mkdir -p /tmp/arduino
 | |
|   - curl http://downloads.arduino.cc/arduino-1.6.5-linux64.tar.xz | tar xJ -C /tmp/arduino --strip 1
 | |
|   - export PATH=$PATH:/tmp/arduino/
 | |
|   - ln -s $PWD /tmp/arduino/libraries/ArduinoJson
 | |
| script:
 | |
|   - cmake -DCOVERAGE=true . && make && make test
 | |
|   - arduino --verify --board arduino:avr:uno $PWD/examples/JsonParserExample/JsonParserExample.ino
 | |
|   - arduino --verify --board arduino:avr:uno $PWD/examples/JsonGeneratorExample/JsonGeneratorExample.ino
 | |
| after_success:
 | |
|     - if [ "$CC" = "gcc" ]; then coveralls --exclude third-party --gcov-options '\-lp'; fi
 |