Skip to content

Commit f698ff3

Browse files
committed
Temp avoid re-build for debugging
1 parent c098d16 commit f698ff3

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,18 @@ jobs:
6767
cmake -G "Visual Studio 17 2022" -A x64 ..
6868
- name: Add msbuild to PATH
6969
uses: microsoft/[email protected]
70-
- 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: |

0 commit comments

Comments
 (0)