This file describes how to build Ice for Swift from source and how to test the resulting build.
Ice for Swift builds and runs on macOS and is supported on the platforms listed on the supported platforms page.
You need the Slice to Swift compiler to build Ice for Swift and also to use Ice
for Swift. The Slice to Swift compiler (slice2swift
) is a command-line tool
written in C++. You can build the Slice to Swift compiler from source, or
alternatively you can install an Ice binary distribution that includes this
compiler.
Ice for Swift requires Swift 5 or later.
Carthage must be installed to build Ice for Swift. You can install Carthage using Homebrew:
brew install carthage
First download and build the PromiseKit framework by running:
carthage update
from the root directory of your ice repository.
Then open ice.xcodeproj
with Xcode and build the Ice macOS
or Ice iOS
targets.
The test programs for macOS and iOS can be built using TestDriver macOS
and
TestDriver iOS
respectively.
Python is required to run the test suite.
After a successful build, you can run the tests as follows:
python allTests.py --config Debug
If everything worked out, you should see lots of ok
messages. In case of a
failure, the tests abort with failed
.
Start the TestDriver iOS
application on your iOS device or simulator, from
Xcode.
Then on your mac, run:
python allTests.py --config Debug --platform iphoneos
or
python allTests.py --config Debug --platform iphonesimulator
depending on your target.