Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/willglynn/travis-avr-gcc
Sample AVR-GCC project built with Travis-CI
https://github.com/willglynn/travis-avr-gcc
Last synced: 3 months ago
JSON representation
Sample AVR-GCC project built with Travis-CI
- Host: GitHub
- URL: https://github.com/willglynn/travis-avr-gcc
- Owner: willglynn
- Created: 2014-02-20T20:20:59.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-20T20:56:15.000Z (almost 11 years ago)
- Last Synced: 2023-04-10T16:34:59.176Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 125 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
travis-avr-gcc
--------------I wanted to get AVR-GCC running on Travis-CI. So I did.
[![Build Status](https://travis-ci.org/willglynn/travis-avr-gcc.png?branch=master)](https://travis-ci.org/willglynn/travis-avr-gcc)
This repository contains:
* A sample AVR codebase (`demo.c` / `iocompat.h`), lifted from [AVR Libc](http://www.nongnu.org/avr-libc/user-manual/group__demo__project.html)
* A `Makefile`, lifted from [mfile](http://www.sax.de/~joerg/mfile/)
* A `.travis.yml` to make it danceTravis-CI checks that it builds, which is better than nothing. Suggestions of where to go from here:
1. Use `travis-artifacts` to [export build artifacts](http://blog.travis-ci.com/2012-12-18-travis-artifacts/).
2. Unit test the hardware-agnostic parts of your app using standard tools.