test #2244
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync test | |
on: | |
push: | |
paths-ignore: | |
- 'docker-compose/**' | |
- 'docs/**' | |
- 'README.md' | |
pull_request: | |
schedule: | |
- cron: '17 0/3 * * *' | |
jobs: | |
sync-test-windows-debug-asan: | |
timeout-minutes: 30 | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup cmake | |
uses: lukka/get-cmake@latest | |
- name: Build p2pool | |
run: | | |
mkdir build | |
cd build | |
cmake .. -G "Visual Studio 17 2022" -DDEV_TEST_SYNC=ON | |
& "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Msbuild\\Current\\Bin\\amd64\\msbuild" -v:m /m /p:Configuration=Debug p2pool.vcxproj | |
- name: Run p2pool | |
run: | | |
cd build/Debug | |
mkdir data | |
Get-Date -Format HH:mm:ss.fff | |
echo "Starting stratum dummy clients" | |
Start-Process python -ArgumentList "../../tests/src/stratum_dummy.py 1" | |
Start-Process python -ArgumentList "../../tests/src/stratum_dummy.py 2" | |
Start-Process python -ArgumentList "../../tests/src/stratum_dummy.py 3" | |
Get-Date -Format HH:mm:ss.fff | |
echo "Starting P2Pool" | |
./p2pool.exe --host xmrnode.facspro.net --rpc-port 18089 --zmq-port 18084 --host xmr2.rs.me --wallet 44MnN1f3Eto8DZYUWuE5XZNUtE3vcRzt2j6PzqWpPau34e6Cf4fAxt6X2MBmrm6F9YMEiMNjN6W4Shn4pLcfNAja621jwyg --light-mode --mini --out-peers 200 --data-api data --local-api --loglevel 6 | |
echo "P2Pool finished" | |
Get-Date -Format HH:mm:ss.fff | |
Get-Content -Path .\p2pool.log | |
- name: Check p2pool.log | |
run: | | |
cd build/Debug | |
findstr /C:"Synchronization finished successfully" p2pool.log | |
- name: Archive p2pool.log | |
uses: actions/upload-artifact@v3 | |
with: | |
name: p2pool_windows_data_debug_asan | |
path: | | |
build/Debug/*.log | |
build/Debug/data/ |