File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ install:
16
16
before_script :
17
17
- xcodebuild -workspace ICInputAccessory.xcworkspace -list
18
18
script :
19
- - bundle exec rake ci:test [$VERSION]
19
+ - bundle exec rake ci:build [$VERSION]
20
20
notifications :
21
21
email : false
22
22
slack :
Original file line number Diff line number Diff line change 1
1
task default : "ci:test"
2
2
3
3
namespace :ci do
4
+ desc "Build targets on Travis CI with a specified OS version, default OS=latest"
5
+ task :build , [ :os ] do |t , args |
6
+ version = args [ :os ] || "latest"
7
+ Rake ::Task [ "framework:build" ] . invoke version
8
+ Rake ::Task [ "example:build" ] . invoke version
9
+ end
10
+
4
11
desc "Run tests on Travis CI with a specified OS version, default OS=latest"
5
12
task :test , [ :os ] do |t , args |
6
13
version = args [ :os ] || "latest"
You can’t perform that action at this time.
0 commit comments