Skip to content

Commit

Permalink
fix windows ci (#3016)
Browse files Browse the repository at this point in the history
* fix macos sync ci
update light-client sync data

* Update prepare_neuron_windows.bat
  • Loading branch information
gpBlockchain authored Jan 10, 2024
1 parent 22d4369 commit b5f22ea
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions packages/sync-test/scripts/prepare_neuron_windows.bat
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
@REM curl -O -L http://github-test-logs.ckbapp.dev/neuron/sync/Neuron-v0.111.1-setup.exe
copy .\Neuron-*.exe Neuron-setup.exe
@echo off
REM 执行安装程序
move .\Neuron-*.exe Neuron-setup.exe
.\Neuron-setup.exe /S /D=D:\a\neuron\neuron\packages\sync-test\neuron

REM 等待进程执行结束
:CHECK_LOOP
tasklist | find "Neuron-setup.exe" > nul
if errorlevel 1 (
echo Neuron install succ
mkdir ".\source\bin"
copy ".\neuron\bin\ckb.exe" ".\source\bin\ckb.exe"
copy ".\neuron\bin\ckb-light-client.exe" ".\source\bin\ckb-light-client.exe"
exit /b 0
) else (
timeout /t 5 /nobreak > nul
goto :CHECK_LOOP
)
mkdir ".\source\bin"
copy ".\neuron\bin\ckb.exe" ".\source\bin\ckb.exe"
copy ".\neuron\bin\ckb-light-client.exe" ".\source\bin\ckb-light-client.exe"

2 comments on commit b5f22ea

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 7469967304

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 7469967304

Please sign in to comment.