如何在Travis CI上构建MacOSX可执行文件?

时间:2015-04-12 08:44:13

标签: python macos wxpython

我有一个小的python程序,它只依赖于wxPython。我在Linux上开发了这个,我设法在Travis CI上使用wine设置自动构建Windows可执行文件(github上的seguid_calculator)。

我的解决方案包括最近的葡萄酒发布和Pyinstaller的组合。

我想为MacOS做类似的事情。我知道Travis上还有一个MacOSX构建环境。我对MacOSX操作系统没有经验,我没有Mac。我知道您可以使用名为“homebrew”的东西安装第三方软件包

我有什么想做的例子吗? travis.yml文件就是一个很好的例子!

感谢任何输入, /比约恩

*编辑*

我创建了一个只打开窗口的示例wxpython应用程序。它位于https://github.com/BjornFJohansson/macapp。 我使用下面的.travis.yml生成无效的可执行文件。

os:
- osx
language: objective-c
python:
- '2.7'
before_install:
- brew update
- brew outdated xctool || brew upgrade xctool
- brew install python
- brew install wxpython
- pip install pyinstaller
- pyinstaller --noconsole --onefile hw.py
- ls
- ls dist/
- hdiutil create dist/hw.dmg -srcfolder dist/ -ov
install: true
deploy:
  skip_cleanup: true
  provider: releases
  api_key:
    secure: VK1oVWQCRomgcFNVua00B3YSsotezzU1p6/fh73/0vwQFzVMolVnAsnfSq6EAwIcJvakU0TI9pqZR+0S3PKnUs+Kn3Ar8OwQ88t2azZNwewBfKua3tM2/7BF4y7O0gOtN1F29Yxyu0zPInIVY17BqGygibQ1kthBTm+tj3YyNW8=
  file: 
    - "dist/hw"
    - "dist/hw.dmg"
  on:
    tags: true
    all_branches: true
    repo: BjornFJohansson/macapp

基本上,首先我更新xtools(我见过很多人这样做,所以我决定也这样做)。然后我酿造安装python和wxpython。然后我pip安装pyinstaller。我使用pyinstaller命令生成可执行文件(hw)和./dist下的“hw.app”文件夹。

我没有设法部署.app文件夹,因此我使用hdiutil创建了一个.dmg。 然后我部署到github版本。

有人可以告诉我这个设置可能有什么问题吗?

可以在此处找到travis日志:https://travis-ci.org/BjornFJohansson/macapp

3 个答案:

答案 0 :(得分:4)

它之所以不起作用的原因是通过自制软件安装的wxPython版本不是32位。您需要从wxPython主页安装dmg。我在那里找到了一个脚本:https://github.com/ayufan/travis-osx-vm-templates/blob/master/scripts/packages.sh

我分叉你的例子并设法让它运行(https://github.com/paulmueller/macapp/releases)。

.travis.yml现在看起来像这样:

language: objective-c
python:
- '2.7'
before_install:
- which python
- brew install python --universal --framework
- brew install wget
- which python
- export VERSIONER_PYTHON_PREFER_32_BIT=yes
- defaults write com.apple.versioner.python Prefer-32-Bit -bool yes
- which python
- python --version
# https://github.com/Homebrew/homebrew/issues/34470
#- arch -i386 brew install wxpython --universal
- mkdir dl
- cd dl
- wget http://downloads.sourceforge.net/wxpython/wxPython3.0-osx-3.0.2.0-cocoa-py2.7.dmg
- ls
- cd ..
- sudo ./packages.sh
- arch -i386 python -c "import wx; print wx.__version__"
- arch -i386 pip install pyinstaller
- arch -i386 pyinstaller --noconsole --onefile hw.py
- ls
- hdiutil create dist/hw.dmg -srcfolder dist/ -ov
- zip -r dist/hw.zip dist/hw.app
- ls dist/
install: true
deploy:
  provider: releases
  skip_cleanup: true
  api_key:
    secure: KjdN4hSHWU3ZDg6lpDNMB2we9jLayM9C8pwyQrV/Xzq8HNH5eNHP8ScI64tvnS0yJegOXnHFwUhUrkMtEs3X29TKrom+8tJ5E52IdBO7xO8fqOfeugC2239vLzc3tNI6RJX/K7CZTsSRu5U++1RJVgcWYjrCln87DuXG+HZRdOI=
  file: 
    - "dist/hw.dmg"
    - "dist/hw.zip"
  on:
    tags: true
    all_branches: true
    repo: paulmueller/macapp

答案 1 :(得分:0)

This表示他们目前不接受新的“多操作系统”请求,因此在Travis CI升级之前,您无法在任何情况下构建OS-X。

一般情况下,您需要接受多操作系统,然后将os: os-x添加到您的.travis.yml文件中(可能在分支上),然后查找如何设置python,pyinstaller& OS-X中的wxpython - 所有3的主页在这方面都非常有用。

答案 2 :(得分:0)

您不需要os:部分。

在使用Travis CI在Mac OSx上部署wxPython应用程序时遇到类似问题。不幸的是,我的设置有点复杂,但它可能有助于解决您的问题。

我正在使用conda构建一切。

我的travis配置:

# Mac OS X Python build
language:
- objective-c
python:
- "2.7"
install:
# install python via brew
- brew install python
# make brews python the system default
- brew link --overwrite python
- which python
- python --version
# pip init
- pip install --upgrade pip
# use anaconda
- pip install conda
- conda init
- conda install --yes matplotlib
- conda install --yes scipy numpy=1.8
- conda install --yes 'numpy<1.9.0'
- conda install --yes wxpython
# final pip installs
- pip install cython
- pip install wheel
- pip install sympy
- pip install git+git://github.com/pyinstaller/pyinstaller.git@779d07b236a943a4bf9d2b1a0ae3e0ebcc914798
# show packages
- pip freeze
# build extensions
- python setup.py develop
script:
# Create wheel pacakge
- python setup.py bdist_wheel
# Create binary
- ./freeze_pyinstaller/macOSx_bundle_script.sh
before_deploy:
  - export RELEASE_PKG_FILEA=$(ls ./dist/*bin.zip)
  - export RELEASE_PKG_FILEB=$(ls ./dist/*app.zip)
  - export RELEASE_PKG_FILEC=$(ls ./dist/*.whl)
  - echo "deploying $RELEASE_PKG_FILEA to GitHub releases"
  - echo "deploying $RELEASE_PKG_FILEB to GitHub releases"
  - echo "deploying $RELEASE_PKG_FILEC to GitHub releases"
# This section was created with
# sudo apt-get install ruby1.9.1-dev
# sudo gem install travis
# travis setup releases
deploy:
  provider: releases
  api_key:
    secure: gQu6BKSo5sucrieOvyLz/kn5Ai+vrnXK6Kdm+WMqzXE6keE0LzujXOHWQX2G2EBl1NCjzvt3HrEvJqwGEjLbduJBBPBHaOy71AfKuHaxRQPlFWMLn2iAVVval3q7xU4kEfjAdS50WmARqh6sT7gMj+pHpg1e3pz1SxybOeC40+k=
  skip_cleanup: true
  # Allow
  file_glob: true
  file: 
    - "${RELEASE_PKG_FILEA}"
    - "${RELEASE_PKG_FILEB}"
    - "${RELEASE_PKG_FILEC}"
  on:
    tags: true
    repo: paulmueller/PyCorrFit

我在创建应用时遇到了问题(可能是由于我的古老构建系统)。因此,我不得不用包含以下内容的脚本替换app文件夹中的二进制文件:

cd $(dirname "$0")
open -a Terminal.app ./MYAPP.bin

其中MYAPP是应用的名称,之前我已将应用文件夹中的二进制文件重命名为MYAPP.bin

启动应用程序后,终端会打开并启动二进制文件。

以下是使用Travis构建的版本:

https://github.com/paulmueller/PyCorrFit/releases/tag/0.8.7travis2

这是一个基于旧版MacBook的工作版本:

https://github.com/paulmueller/PyCorrFit/releases/tag/0.8.7

在使用Travis构建的版本中存在某种wxpython错误。我没有配备最新OSx的Mac。看看它可能对你有帮助(也许我)。