Announcing MacStadium Pipelines

We recently launched support for MacStadium pipelines. A MacStadium pipeline integrations with MacStadium to provision on-demand Mac virtual machines for your pipelines.

You can read the blog post here:
https://blog.drone.io/continuous-integration-for-mac-osx/

Learn more about our MacStadium runner here:
https://docs.drone.io/runner/macstadium/overview/

Learn more about our MacStadium pipeline syntax here:
https://docs.drone.io/pipeline/macstadium/overview/

Example MacStadium pipeline:

---
kind: pipeline                                        
type: macstadium
name: default

settings:
  image: MojaveWithXcode.img

steps:
- name: install
  commands:
  - pod --version
  - pod install

- name: test
  commands:
  - xcodebuild -version -sdk
  - X build test

Explore the source code here: