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 18
18
run : |
19
19
sudo apt update
20
20
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
22
22
sudo ./plugin-GUI/Resources/Scripts/install_linux_dependencies.sh
23
23
cd plugin-GUI/Build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
24
24
- name : build
Original file line number Diff line number Diff line change 17
17
- name : setup
18
18
run : |
19
19
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
21
21
cd plugin-GUI/Build && cmake -G "Xcode" ..
22
22
- name : build
23
23
run : |
Original file line number Diff line number Diff line change 20
20
package : " open-ephys-lib"
21
21
run : |
22
22
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
24
24
cd plugin-GUI/Build
25
25
cmake -G "Visual Studio 16 2019" -A x64 ..
26
26
mkdir Release && cd Release
54
54
new_plugin_ver=$tag-API$plugin_api
55
55
mkdir plugins
56
56
cp $build_dir/*.dll plugins
57
- if [ -d "Resources" ]
58
- then
59
- mkdir shared
60
- cp Resources/*.dll shared
61
- fi
62
57
zipfile=${package}_${new_plugin_ver}.zip
63
58
powershell Compress-Archive -Path "plugins" -DestinationPath ${zipfile}
64
- if [ -d "shared" ]
65
- then
66
- powershell Compress-Archive -U -Path "shared" -DestinationPath ${zipfile}
67
- fi
68
59
curl -H "X-JFrog-Art-Api:$artifactoryApiKey" -T $zipfile "https://openephys.jfrog.io/artifactory/MatlabInterface-plugin/windows/$zipfile"
69
60
shell : bash
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ endif()
10
10
get_filename_component (PROJECT_FOLDER ${CMAKE_CURRENT_SOURCE_DIR} ABSOLUTE )
11
11
get_filename_component (PLUGIN_NAME ${PROJECT_FOLDER} NAME )
12
12
13
+ set (CMAKE_OSX_ARCHITECTURES "x86_64" CACHE STRING "Build architecture for Mac OS X" FORCE)
14
+
13
15
project (OE_PLUGIN_${PLUGIN_NAME} )
14
16
set (CMAKE_SHARED_LIBRARY_PREFIX "" )
15
17
if (${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)
38
38
{
39
39
info->apiVersion = PLUGIN_API_VER;
40
40
info->name = " Matlab Interface" ;
41
- info->libVersion = " 0.1 .0" ;
41
+ info->libVersion = " 0.2 .0" ;
42
42
info->numPlugins = NUM_PLUGINS;
43
43
}
44
44
You can’t perform that action at this time.
0 commit comments