Skip to content

Commit

Permalink
fix Travis CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
fscherwi committed Jun 1, 2019
1 parent 29a449f commit 0d52aff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
language: objective-c
osx_image: xcode10
osx_image: xcode10.2
before_install:
- pod repo update
after_success:
- bash <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/04845559fe1caefe990968cc9e3851573012b756/codecov) -J 'AerialApp'
before_script:
- make lint
script:
- make test
- make test-travis
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ build: clean
test: clean
$(XCODEBUILD) test $(BUILD_FLAGS) -enableCodeCoverage YES

test-travis: clean
$(XCODEBUILD) test -workspace Aerial.xcworkspace $(BUILD_FLAGS) -enableCodeCoverage YES CODE_SIGNING_ALLOWED=NO

lint:
@echo SwiftLint Version: $(shell swiftlint version)
@echo PWD: $(shell pwd)
Expand Down

0 comments on commit 0d52aff

Please sign in to comment.