diff options
author | andrew-elder <aelder@audioscience.com> | 2014-10-20 16:58:45 -0400 |
---|---|---|
committer | andrew-elder <aelder@audioscience.com> | 2014-10-20 16:58:45 -0400 |
commit | ba60b5acc72823d2db849c2f9acf0bb873185b5c (patch) | |
tree | d689abff7f36620546a15ff58d2a15e572356838 /.travis.yml | |
parent | 5501c68b8e3de5850d335eb12b089130ae84b355 (diff) | |
parent | a1611b9c04a18720217439169c20fd7bb50859d0 (diff) | |
download | Open-AVB-ba60b5acc72823d2db849c2f9acf0bb873185b5c.tar.gz |
Merge pull request #95 from audioscience/cpputest
MRP: add cpputest and start of a test framework
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 699f986e..abdd6e77 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,11 @@ language: c +# git submodules workaround +git: + submodules: false +# use sed to replace SSH URL with the public URL, then init submodules +before_install: + - sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules + - git submodule update --init --recursive compiler: - gcc env: BUILD_KERNEL=3.13.0-36-generic |