-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configure Circle CI #20
Merged
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
2a9da2d
test
djbe a42fade
remove travis
djbe d2f5c1e
try caching cocoapods
djbe f0939f9
store output to designated circle paths
djbe 4ee70bf
rewrite rakefile to output circle artefacts on CI
djbe 15c5f60
namespace commands
djbe 18262e8
switch status image from travis to circle
djbe 703c749
small fix
djbe 011f3a3
get name from task
djbe e124d1e
code linting
djbe 10fa112
fix swift lint issues
djbe 68c23f0
use pod specs from S3
djbe 1539a66
use join instead of +
djbe 283e7e3
move swiftlint scripts into rakefile
djbe 10d9a3e
delete and ignore useless xcode file
djbe 97e78a3
forgot to update circle.yml
djbe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,42 @@ | ||
def xcpretty(cmd) | ||
if `which xcpretty` && $?.success? | ||
def xcpretty(cmd, name) | ||
if ENV['CI'] | ||
sh "set -o pipefail && #{cmd} | tee \"#{ENV['CIRCLE_ARTIFACTS']}/#{name}_raw.log\" | xcpretty --color --report junit --output \"#{ENV['CIRCLE_TEST_REPORTS']}/xcode/#{name}.xml\"" | ||
elsif `which xcpretty` && $?.success? | ||
sh "set -o pipefail && #{cmd} | xcpretty -c" | ||
else | ||
sh cmd | ||
end | ||
end | ||
|
||
task :build_for_testing do | ||
sh "swift build" | ||
xcpretty "xcodebuild -workspace StencilSwiftKit.xcworkspace -scheme Tests build-for-testing" | ||
def plain(cmd, name) | ||
if ENV['CI'] | ||
sh "set -o pipefail && #{cmd} | tee \"#{ENV['CIRCLE_ARTIFACTS']}/#{name}_raw.log\"" | ||
else | ||
sh cmd | ||
end | ||
end | ||
|
||
task :spm_build do | ||
plain("swift build", "spm_build") | ||
end | ||
|
||
task :xcode_build do | ||
xcpretty("xcodebuild -workspace StencilSwiftKit.xcworkspace -scheme Tests build-for-testing", "xcode_build") | ||
end | ||
|
||
desc 'Run Xcode Unit Tests' | ||
task :xcode_test => :xcode_build do | ||
xcpretty("xcodebuild -workspace StencilSwiftKit.xcworkspace -scheme Tests test-without-building", "xcode_test") | ||
end | ||
|
||
desc 'Run Unit Tests' | ||
task :test => :build_for_testing do | ||
sh "swift test" | ||
xcpretty "xcodebuild -workspace StencilSwiftKit.xcworkspace -scheme Tests test-without-building" | ||
desc 'Run SPM Unit Tests' | ||
task :spm_test => :spm_build do | ||
plain("swift test", "spm_build") | ||
end | ||
|
||
desc 'Lint the Pod' | ||
task :lint do | ||
sh "pod lib lint StencilSwiftKit.podspec --quick" | ||
plain("pod lib lint StencilSwiftKit.podspec --quick", "lint") | ||
end | ||
|
||
task :default => :test | ||
task :default => :xcode_test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tip: you can use take namespaces to group relative tasks together.
A
namespace 'spm' do … end
and anamespace 'xcodebuild' do … end
would be nicer to read, and then you can name your tasks justbuild
andtest
and refer to them asrake spm:test
etc.