Skip to content

Commit

Permalink
Strip usused commands, Fix codegov
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed May 4, 2017
1 parent 17abff7 commit 4e49cfa
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 14 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ rvm:
script:
- .travis/run.sh
after_success:
- if [ "$LANE" = "test" ]; then bash <(curl -s https://codecov.io/bash) -J '^Swift$'; elif [ "$LANE" = "test_swift" ]; then bash <(curl -s https://codecov.io/bash) -J '^SentrySwift$'; fi
# - .travis/after_success.sh
# - if [ "$LANE" = "test_swift_3_ios" ]; then bash <(curl -s https://codecov.io/bash) -f cobertura.xml; fi
- if [ "$LANE" = "test" ]; then bash <(curl -s https://codecov.io/bash) -J '^Sentry$'; elif [ "$LANE" = "test_swift" ]; then bash <(curl -s https://codecov.io/bash) -J '^SentrySwift$'; fi
env:
matrix:
- LANE=lint
Expand Down
2 changes: 0 additions & 2 deletions .travis/after_success.sh

This file was deleted.

4 changes: 0 additions & 4 deletions .travis/run.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#!/bin/sh
gem install fastlane

# gem "cocoapods"
# gem "fastlane"
# gem "slather", :group => :coverage

if [ "$LANE" = "lint" ];
then
gem install danger
Expand Down
3 changes: 0 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@ source "https://rubygems.org"

gem "cocoapods"
gem "fastlane"
gem "slather"
gem "danger"
gem "danger-swiftlint"
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ lane :lint do
end

lane :test do
scan(scheme: "Sentry", code_coverage: true)
scan(scheme: "Sentry")
end

lane :test_swift do
scan(scheme: "SentrySwift", code_coverage: true)
scan(scheme: "SentrySwift")
# travis_slather
end

Expand Down

0 comments on commit 4e49cfa

Please sign in to comment.