File tree Expand file tree Collapse file tree 5 files changed +6
-13
lines changed Expand file tree Collapse file tree 5 files changed +6
-13
lines changed Original file line number Diff line number Diff line change 1818 run : |
1919 sudo apt update
2020 cd ../..
21- git clone https://github.com/open-ephys/plugin-GUI.git --branch development-juce6
21+ git clone https://github.com/open-ephys/plugin-GUI.git --branch main
2222 sudo ./plugin-GUI/Resources/Scripts/install_linux_dependencies.sh
2323 cd plugin-GUI/Build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
2424 - name : build
Original file line number Diff line number Diff line change 1717 - name : setup
1818 run : |
1919 cd ../..
20- git clone https://github.com/open-ephys/plugin-GUI.git --branch development-juce6
20+ git clone https://github.com/open-ephys/plugin-GUI.git --branch main
2121 cd plugin-GUI/Build && cmake -G "Xcode" ..
2222 - name : build
2323 run : |
Original file line number Diff line number Diff line change 2020 package : " open-ephys-lib"
2121 run : |
2222 cd ../..
23- git clone https://github.com/open-ephys/plugin-GUI.git --branch development-juce6
23+ git clone https://github.com/open-ephys/plugin-GUI.git --branch main
2424 cd plugin-GUI/Build
2525 cmake -G "Visual Studio 16 2019" -A x64 ..
2626 mkdir Release && cd Release
5454 new_plugin_ver=$tag-API$plugin_api
5555 mkdir plugins
5656 cp $build_dir/*.dll plugins
57- if [ -d "Resources" ]
58- then
59- mkdir shared
60- cp Resources/*.dll shared
61- fi
6257 zipfile=${package}_${new_plugin_ver}.zip
6358 powershell Compress-Archive -Path "plugins" -DestinationPath ${zipfile}
64- if [ -d "shared" ]
65- then
66- powershell Compress-Archive -U -Path "shared" -DestinationPath ${zipfile}
67- fi
6859 curl -H "X-JFrog-Art-Api:$artifactoryApiKey" -T $zipfile "https://openephys.jfrog.io/artifactory/MatlabInterface-plugin/windows/$zipfile"
6960 shell : bash
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ endif()
1010get_filename_component (PROJECT_FOLDER ${CMAKE_CURRENT_SOURCE_DIR} ABSOLUTE )
1111get_filename_component (PLUGIN_NAME ${PROJECT_FOLDER} NAME )
1212
13+ set (CMAKE_OSX_ARCHITECTURES "x86_64" CACHE STRING "Build architecture for Mac OS X" FORCE)
14+
1315project (OE_PLUGIN_${PLUGIN_NAME} )
1416set (CMAKE_SHARED_LIBRARY_PREFIX "" )
1517if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" )
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
3838{
3939 info->apiVersion = PLUGIN_API_VER;
4040 info->name = " Matlab Interface" ;
41- info->libVersion = " 0.1 .0" ;
41+ info->libVersion = " 0.2 .0" ;
4242 info->numPlugins = NUM_PLUGINS;
4343}
4444
You can’t perform that action at this time.
0 commit comments