aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
AgeCommit message (Collapse)Author
2015-02-06cc3200: Add cc3200 port of MicroPython.danicampora
The port currently implements support for GPIO, RTC, ExtInt and the WiFi subsystem. A small file system is available in the serial flash. A bootloader which makes OTA updates possible, is also part of this initial implementation.
2015-01-14travis, minimal: Install gcc-multilib for -m32; use /bin/echo for test.Damien George
2015-01-13minimal: Add simple test; build and run minimal test on Travis CI.Damien George
2015-01-12travis: grep for failure in qemu-arm output if tests fail.Damien George
2015-01-09qemu-arm: Add 'test' target to Makefile to run and verify test suite.Damien George
Replaces RUN_TEST=1 definition; now "make test" in qemu-arm directory will run tests/basics/ and check that they all succeed. This patch also enables the test on Travis CI.
2014-10-30stmhal: Fix ptr arith in CC3000 code; enable network build in travis.Damien George
2014-10-06travis: Install realpath, required for teensy build.Paul Sokolovsky
2014-08-29tests: Add option to run-tests to enable native emitter.Damien George
2014-08-05travis: Build stmhal/ST32F4DISC and teensy in Travis tests.Damien George
2014-06-26travis: Use unified diffs for failed tests.Paul Sokolovsky
2014-05-11travis: Add cross-compilation of mingw portstijn
2014-04-21travis: should test building qemu-arm as well.Ilya Dmitrichenko
2014-04-15travis: Move diffing back to after_failure command.Damien George
Need to click on icon at right to see the output.
2014-04-15travis: Diff output, hopefully this works.Damien George
2014-04-15travis: Continue to debug tests output.Damien George
Seems that any commands in after_failure do not have stdout...
2014-04-15travis: More tests output debugging.Damien George
2014-04-15travis: Debugging failing tests.Damien George
2014-04-15travis: On fail, cd to tests directory before diffing.Damien George
2014-04-15travis: only build unix with gcc-4.7Andrew Scheller
2014-04-15travis: build unix targets firstAndrew Scheller
because @pfalcon says so
2014-04-15Merge remote-tracking branch 'upstream/master' into patch-1Andrew Scheller
Conflicts: .travis.yml
2014-04-15.travis.yml: Use gcc-4.7 to avoid broken codegeneration and failed tests.Paul Sokolovsky
2014-04-15Update .travis.ymlAndrew Scheller
Check that the bare-arm, stmhal and unix-cpy ports at least remain compilable, even if we can only actually run tests against the unix port.
2014-04-15Update .travis.ymlAndrew Scheller
Seems like I'd inadvertently created invalid YAML!
2014-04-15Update .travis.ymlAndrew Scheller
Add diffing of failure logs
2014-04-15Update .travis.ymlAndrew Scheller
Doh, the shebang line for run-tests itself relies on `python3`
2014-04-15Update .travis.ymlAndrew Scheller
This *might* fix it enough for all tests to run (maybe?)
2014-04-14travis: Only run some tests, to work around CPython version issues.Damien George
Needs a proper fix, to install/configure CPython 3.3.x (or 3.4.0) on Travis CI.
2014-04-14travis: Change to tests directory before running.Damien George
2014-04-15Add Travis CI support.AZ Huang