gabrielcolmena
gabrielcolmena

Reputation: 31

Create and distribute archives remotely

i'm currently working as an iOS developer but where i live the internet speed is very low. So i'm looking for a way to build archives on a remote server and distribute them using that same server (located at somewhere with a decent internet connection) so i can distribute builds to testers on a faster way

i've already found some platforms like xcloud.me, jekins or Mac OS Server but i'm not sure if those platforms could make what i need

It is possible? thanks

Upvotes: 0

Views: 64

Answers (1)

naglerrr
naglerrr

Reputation: 2854

You could either rent a macOS server in the Cloud somewhere and setup your own solution (via Jenkins for example) or use a SaS solution like TravisCI or CircleCI. Setting up your own solution on a macOS server is a considerable effort, so if you are new to Continuous Integration, Continuous Delivery and Administration it is probably a good idea to use a SaS solution. A full setup could look like this:

  1. Host your code on GitHub or similar
  2. Use TravisCI or CircleCI to build your app
  3. Upload the build to a distribution service like HockeyApp for distribution

Upvotes: 1

Related Questions