annotate .travis.yml @ 2265:d33dff02b39b sandbox-notarize

Work on sandboxing (possibly) and using the hardened runtime for notarization. Supply appropriate bundle ID for helpers as well as main application, and request inherited sandbox entitlements. Currently works with sandboxing (apparently) but not yet with the hardened runtime, where we can't load plugins signed by third parties even with the com.apple.security.cs.disable-library-validation entitlement because their team IDs don't match the host. Possibly that exception is supposed to be requested some other way?
author Chris Cannam
date Thu, 25 Apr 2019 16:46:02 +0100
parents 60d78294ea3a
children 1a6f786c1eab
rev   line source
Chris@1727 1 language:
Chris@1727 2 - cpp
Chris@1727 3
Chris@1750 4 matrix:
Chris@1750 5 include:
Chris@1971 6 - os: osx
Chris@1971 7 osx_image: xcode9
Chris@1750 8 - os: linux
Chris@2152 9 dist: xenial
Chris@1942 10 sudo: required
Chris@1971 11 addons:
Chris@1971 12 apt:
Chris@1971 13 packages:
Chris@1976 14 - libbz2-dev libfftw3-dev libfishsound1-dev libid3tag0-dev liblo-dev liblrdf0-dev libmad0-dev liboggz2-dev libpulse-dev libsamplerate-dev libsndfile-dev libsord-dev libxml2-utils portaudio19-dev qt5-default libqt5svg5-dev raptor-utils librubberband-dev autoconf libtool git mlton
Chris@1727 15
Chris@1727 16 before_install:
Chris@1751 17 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; fi
Chris@1727 18 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install polyml ; fi
Chris@1727 19 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi
Chris@1727 20 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:/usr/local/opt/qt5/bin ; fi
Chris@1727 21 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto )
Chris@1977 22 - ( cd ../capnproto/ ; git checkout v0.6.1 )
Chris@1971 23 - ( cd ../capnproto/c++ ; autoreconf -i )
Chris@1727 24 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install )
Chris@1730 25
Chris@1730 26 before_script:
Chris@1808 27 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ./configure ; else ./repoint install && qmake -r sonic-visualiser.pro ; fi
Chris@1730 28
Chris@1727 29 script:
Chris@1730 30 - make -j3
Chris@1883 31 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ./deploy/linux/deploy-appimage.sh ; fi