Skip to content

Commit

Permalink
chore: Add Travis CI support
Browse files Browse the repository at this point in the history
This change adds support for building the project on Travis CI
infrastructure in order to test whether the build still compiles when
making changes to the code.
  • Loading branch information
fabianishere committed Jul 19, 2018
1 parent 0e1c053 commit 9b1aced
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: c
addons:
apt:
packages:
- binutils-mingw-w64
- gcc-mingw-w64-x86-64
script:
- mkdir build
- cd build
- cmake .. && make VERBOSE=1
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# boot2flappy
boot2flappy
[![Build Status](https://travis-ci.org/fabianishere/boot2flappy.svg?branch=master)](https://travis-ci.org/fabianishere/boot2flappy)
===========
Flappy Bird for UEFI written in x86 Assembly.

![Screenshot](resources/screenshot.png)
Expand Down

0 comments on commit 9b1aced

Please sign in to comment.