File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -99,10 +99,17 @@ jobs:
99
99
env :
100
100
BRAINFLOW_VERSION : ${{ steps.version.outputs.version }}
101
101
- name : C# build
102
+ if : (matrix.os == 'ubuntu-20.04')
102
103
run : |
103
104
cd $GITHUB_WORKSPACE/csharp_package/brainflow
104
105
dotnet restore brainflow.sln
105
- dotnet build brainflow.sln -c Release
106
+ dotnet build brainflow.sln -c Release --runtime linux-x64
107
+ - name : C# build
108
+ if : (matrix.os == 'macos-11.0')
109
+ run : |
110
+ cd $GITHUB_WORKSPACE/csharp_package/brainflow
111
+ dotnet restore brainflow.sln
112
+ dotnet build brainflow.sln -c Release --runtime osx.10.13-x64
106
113
- name : Setup Python Package
107
114
run : |
108
115
cd $GITHUB_WORKSPACE/python_package
@@ -334,6 +341,9 @@ jobs:
334
341
run : |
335
342
cd $GITHUB_WORKSPACE/csharp_package/brainflow/examples/brainflow_get_data/bin/Release/netcoreapp3.1
336
343
./brainflow_get_data --board-id -1
344
+ env :
345
+ LD_DEBUG : all
346
+ DYLD_PRINT_LIBRARIES : 1
337
347
- name : Synthetic Node
338
348
run : |
339
349
cd $GITHUB_WORKSPACE/nodejs_package/tests
You can’t perform that action at this time.
0 commit comments