December 2018
Intermediate to advanced
414 pages
10h 19m
English
Travis requires us to have a special file, the .travis.yml file, in our repository in order to give instructions for building the project.
Working with simple projects or libraries, you can leverage Travis configuration settings that allow you to build and test a project.
The basic file should have the following values:
language: objective-cosx_image: xcode10.1xcode_project: MyNewProject.xcodeproj # path to your xcodeproj folderxcode_workspace : MyNewWorkspace.xcworkspace # use this instead of your project if you have a workspacexcode_scheme: MyNewProjectTests # scheme for the testsxcode_destination: platform=iOS Simulator,OS=12.0,name=iPhone XS
Read now
Unlock full access