2014-04-14 19:05:47 +01:00
|
|
|
language: c
|
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
|
|
|
|
before_script:
|
2014-04-15 00:52:15 +01:00
|
|
|
- sudo add-apt-repository -y ppa:fkrull/deadsnakes
|
|
|
|
- sudo apt-get update -qq
|
2014-04-15 02:14:53 +01:00
|
|
|
- sudo apt-get install -y python3.3 python3
|
2014-04-14 19:05:47 +01:00
|
|
|
|
|
|
|
script:
|
|
|
|
- make -C unix
|
2014-04-15 00:52:15 +01:00
|
|
|
- cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests
|
2014-04-15 02:29:59 +01:00
|
|
|
|
2014-04-15 02:42:23 +01:00
|
|
|
after_failure: for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done
|