Skip to content

Commit a3c496b

Browse files
committed
add c# test to unix and mac
Signed-off-by: Andrey Parfenov <[email protected]>
1 parent 36cdaf5 commit a3c496b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/run_unix.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,17 @@ jobs:
9999
env:
100100
BRAINFLOW_VERSION: ${{ steps.version.outputs.version }}
101101
- name: C# build
102+
if: (matrix.os == 'ubuntu-20.04')
102103
run: |
103104
cd $GITHUB_WORKSPACE/csharp_package/brainflow
104105
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
106113
- name: Setup Python Package
107114
run: |
108115
cd $GITHUB_WORKSPACE/python_package
@@ -334,6 +341,9 @@ jobs:
334341
run: |
335342
cd $GITHUB_WORKSPACE/csharp_package/brainflow/examples/brainflow_get_data/bin/Release/netcoreapp3.1
336343
./brainflow_get_data --board-id -1
344+
env:
345+
LD_DEBUG: all
346+
DYLD_PRINT_LIBRARIES: 1
337347
- name: Synthetic Node
338348
run: |
339349
cd $GITHUB_WORKSPACE/nodejs_package/tests

0 commit comments

Comments
 (0)