Skip to content

Commit

Permalink
[travis] Add minimal .travis.yml file
Browse files Browse the repository at this point in the history
Allow for automated builds via Travis CI (https://travis-ci.org).

Explicitly build just the wimboot.%.unsigned targets, since neither
the pesign nor gcab packages are in the allowed packages list for the
Travis 14.04 ("trusty") container environment.

Signed-off-by: Michael Brown <mbrown@fensystems.co.uk>
  • Loading branch information
mcb30 committed May 3, 2017
1 parent 1567b90 commit dd67cde
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
@@ -0,0 +1,23 @@
dist: trusty

sudo: false

language: c

cache: ccache

compiler:
- gcc

addons:
apt:
packages:
- binutils-dev
- libiberty-dev

env:
global:
- MAKEFLAGS="-j 4"

script:
- make -C src wimboot.i386.unsigned wimboot.x86_64.unsigned

0 comments on commit dd67cde

Please sign in to comment.