Finally ;) Xcode 6.3 support:

http://blog.travis-ci.com/2015-05-26-xcode-63-beta-general-availability/

Signed-off-by: Stephen Celis <stephen@stephencelis.com>
This commit is contained in:
Stephen Celis 2015-05-30 21:15:04 -04:00
Родитель 9dd044657d
Коммит 3f08767c85
3 изменённых файлов: 18 добавлений и 1 удалений

9
.travis.yml Normal file
Просмотреть файл

@ -0,0 +1,9 @@
language: objective-c
env:
- BUILD_SDK=iphonesimulator ONLY_ACTIVE_ARCH=NO
- BUILD_SDK=macosx
before_install:
- gem install xcpretty --no-document
script:
- make test
osx_image: beta-xcode6.3

Просмотреть файл

@ -2,13 +2,19 @@ BUILD_TOOL = xcodebuild
BUILD_SDK = macosx
BUILD_ARGUMENTS = -scheme SQLite -sdk $(BUILD_SDK)
XCPRETTY := $(shell command -v xcpretty)
default: test
build:
$(BUILD_TOOL) $(BUILD_ARGUMENTS)
test:
ifdef XCPRETTY
@set -o pipefail && $(BUILD_TOOL) $(BUILD_ARGUMENTS) test | $(XCPRETTY) -c
else
$(BUILD_TOOL) $(BUILD_ARGUMENTS) test
endif
clean:
$(BUILD_TOOL) $(BUILD_ARGUMENTS) clean

Просмотреть файл

@ -1,10 +1,12 @@
# SQLite.swift
# SQLite.swift [![Build Status][Badge]][Travis]
A type-safe, [Swift][]-language layer over [SQLite3][].
[SQLite.swift][] provides compile-time confidence in SQL statement
syntax _and_ intent.
[Badge]: https://img.shields.io/travis/stephencelis/SQLite.swift/master.svg?style=flat
[Travis]: https://travis-ci.org/stephencelis/SQLite.swift
[Swift]: https://developer.apple.com/swift/
[SQLite3]: http://www.sqlite.org
[SQLite.swift]: https://github.com/stephencelis/SQLite.swift