Skip to content

Commit bfef293

Browse files
committed
Disable UI testing until testing failure with status (65) is resolved
1 parent ae6b523 commit bfef293

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ install:
1616
before_script:
1717
- xcodebuild -workspace ICInputAccessory.xcworkspace -list
1818
script:
19-
- bundle exec rake ci:test[$VERSION]
19+
- bundle exec rake ci:build[$VERSION]
2020
notifications:
2121
email: false
2222
slack:

Rakefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
task default: "ci:test"
22

33
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+
411
desc "Run tests on Travis CI with a specified OS version, default OS=latest"
512
task :test, [:os] do |t, args|
613
version = args[:os] || "latest"

0 commit comments

Comments
 (0)