Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 5e3b8ff2 authored by hhakim's avatar hhakim Committed by hhakim
Browse files

Add a new ci job for packaging faust on MacOS X.

Not using cpack because it depends on packagemaker which is not installed on the VM (too old sys. for apple store to authorize installation).
parent 0c009dad
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
stages:
- test
- test_wrapper
- package_rev
ctest:
<<: *ctest_script
......@@ -51,4 +52,13 @@ ctest_nightly_win7:
tags:
- win7
package_macos:
stage: package_rev
script:
- if [[ ! -d 'build' ]]; then mkdir build;fi; cd build
- 'cmake -DBUILD_WRAPPER_PYTHON=ON -DBUILD_WRAPPER_MATLAB=ON -DCMAKE_INSTALL_PREFIX=/opt/local/faust-$CI_COMMIT_SHA ..'
- 'echo $MACOS_PASS | sudo make install'
- 'hdiutil create -volname Faust-MatlabR2016a-Py2.7 -srcfolder /opt/local/faust-$CI_COMMIT_SHA -ov -format UDRW faust-$CI_COMMIT_SHA'
- if [[ -d $MACOS_PKG_STORE_PATH ]]; then echo $MACOS_PASS | sudo mv faust-$CI_COMMIT_SHA.dmg $MACOS_PKG_STORE_PATH; fi
tags:
- macos
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment