osx - Install an homebrew bottled binary package -


i need speed travis package generation in need brew install fftw --with-openmp

that takes ~20 minutes build , of time travis kills job.

my idea create repo in (once in while) generate binary bottled version of fftw --with-openmp , application repo intall particular bottled version. i'm stuck in last part...

i created empty repo linked travis (https://github.com/iltommi/fftw-openmp) in have .travis.yml :

os: osx  osx_image: xcode7.1  sudo: required  script:  - export compiler=g++-6  - brew update; brew tap homebrew/science  - brew install --build-bottle fftw --with-openmp  - brew bottle fftw  - export release_file=$(ls fftw*bottle*.tar.gz)  - ls -la  deploy:   provider: releases   edge:     branch: releases-fix   api_key: $github_token   file: "${release_file}"   skip_cleanup: true   overwrite: true 

so file in releases (https://github.com/iltommi/fftw-openmp/releases)

now, how install other repo? can via wget then?

thanks

it looks has been answered here https://apple.stackexchange.com/a/204833/99311:

i'll leave in case else need on stackoverflow:

brew install -f fftw-3.3.5.yosemite.bottle.1.tar.gz

where fftw-3.3.5.yosemite.bottle.1.tar.gz file generated commands

brew install --build-bottle fftw --with-openmp brew bottle fftw 

Comments

Popular posts from this blog

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -