File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -67,10 +67,18 @@ jobs:
6767 cmake -G "Visual Studio 17 2022" -A x64 ..
6868 - name : Add msbuild to PATH
696970- - name : build
70+ # - name: build
71+ # run: |
72+ # cd Build
73+ # msbuild ALL_BUILD.vcxproj -p:Configuration=Release -p:Platform=x64 -m
74+ - name : Install from binaries
75+ shell : powershell
7176 run : |
72- cd Build
73- msbuild ALL_BUILD.vcxproj -p:Configuration=Release -p:Platform=x64 -m
77+ New-Item -Path 'Build\Release' -ItemType Directory
78+ Invoke-WebRequest https://openephys.jfrog.io/artifactory/GUI-binaries/Dev/windows/open-ephys-latest-windows-dev.zip -OutFile C:\open-ephys-latest-windows-dev.zip
79+ Expand-7ZipArchive -Path C:\open-ephys-latest-windows-dev.zip -DestinationPath Build\Release
80+ cd Build\Release
81+ Get-ChildItem -Recurse
7482 - name : Install open-ephys-data-format
7583 shell : powershell
7684 run : |
You can’t perform that action at this time.
0 commit comments