LoginSignup
0

More than 5 years have passed since last update.

Travis CIでJailbreak Tweak(Logos)を自動ビルドしてみる

Posted at

Travis CIでLogos、Jailbreak Tweakを自動ビルドしてみました。

.travis.yml

travis.yml
os: osx
osx_image: xcode8
language: objective-c

env:
  global:
     - THEOS=~/theos

before_install:
  - brew update
  - brew install dpkg ldid
  - git clone --recursive git://github.com/theos/theos.git ~/theos

script:
   - make package

Makefileの位置等は適宜読み替えてください。

デモ

Build Status

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0