Restore Travis
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:
Родитель
9dd044657d
Коммит
3f08767c85
|
@ -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
|
6
Makefile
6
Makefile
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче