forked from mne-tools/mne-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAINT: Add static deployment scripts. add missing deployment steps to…
… static deployment.
- Loading branch information
1 parent
f39c413
commit a196e69
Showing
8 changed files
with
62 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule mne-cpp-test-data
deleted from
9207dc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Delete folders which we do not want to ship | ||
rm -r bin/mne_rt_server_plugins | ||
rm -r bin/mne-cpp-test-data | ||
rm -r bin/mne_scan_plugins | ||
rm -r bin/mne_analyze_plugins | ||
|
||
# Creating archive of everything in the bin directory | ||
tar cfvz mne-cpp-linux-static-x86_64.tar.gz bin/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# This script needs to be run from the top level mne-cpp repo folder | ||
# Solve for dependencies for mne_scan.app bundle | ||
cp -a bin/resources/. bin/mne_scan.app/Contents/MacOS/resources | ||
|
||
# Solve for dependencies for mne_analyze.app bundle | ||
cp -a bin/resources/. bin/mne_analyze.app/Contents/MacOS/resources | ||
|
||
# Solve for dependencies for mne_rt_server.app bundle | ||
cp -a bin/resources/. bin/mne_rt_server.app/Contents/MacOS/resources | ||
|
||
# Solve for dependencies for mne_forward_solution.app bundle | ||
cp -a bin/resources/. bin/mne_forward_solution.app/Contents/MacOS/resources | ||
|
||
# Solve for dependencies for mne_dipole_fit.app bundle | ||
cp -a bin/resources/. bin/mne_dipole_fit.app/Contents/MacOS/resources | ||
|
||
# Solve for dependencies for mne_anonymize.app bundle | ||
cp -a bin/resources/. bin/mne_anonymize.app/Contents/MacOS/resources | ||
|
||
# Delete folders which we do not want to ship | ||
rm -r bin/mne-cpp-test-data | ||
rm -r bin/mne_scan_plugins | ||
rm -r bin/mne_analyze_plugins | ||
rm -r bin/mne_rt_server_plugins | ||
rm -r bin/resources | ||
|
||
# Creating archive of all macos deployed applications | ||
tar cfvz mne-cpp-macos-static-x86_64.tar.gz bin/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Delete folders which we do not want to ship | ||
Remove-Item 'bin/mne_rt_server_plugins' -Recurse | ||
Remove-Item 'bin/mne-cpp-test-data' -Recurse | ||
Remove-Item 'bin/mne_scan_plugins' -Recurse | ||
Remove-Item 'bin/mne_analyze_plugins' -Recurse | ||
|
||
# Creating archive of everything in the bin directory | ||
7z a mne-cpp-windows-static-x86_64.zip ./bin |