diff --git a/.gitignore b/.gitignore index 2ca7ee9..370b4cc 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,19 @@ DerivedData External/libgit2*.a +### fastlane ### +# fastlane - A streamlined workflow tool for Cocoa deployment + +# fastlane specific +fastlane/report.xml + +# deliver temporary files +fastlane/Preview.html + +# snapshot generated screenshots +fastlane/screenshots/**/*.png +fastlane/screenshots/screenshots.html + +# scan temporary files +fastlane/test_output +test_output diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1a05a2d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: objective-c + +osx_image: xcode7.2 + +sudo: false # Enable container-based builds + +install: + - gem install scan + - brew install cmake + - brew install libssh2 + +script: scan -w SwiftGit2.xcworkspace -s "SwiftGit2-OSX" + +branches: + only: # whitelist + - master + +notifications: + email: false diff --git a/README.md b/README.md index 008d8e6..a18fd33 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# SwiftGit2 +# SwiftGit2 [![Build Status](https://travis-ci.org/SwiftGit2/SwiftGit2.svg)](https://travis-ci.org/SwiftGit2/SwiftGit2) Swift bindings to [libgit2](https://github.com/libgit2/libgit2). ```swift